Package | Description |
---|---|
org.infinispan.client.hotrod |
Hot Rod client API.
|
org.infinispan.commons.util |
Commons package providing various utility classes
|
org.infinispan.persistence.sifs |
Soft Index
AdvancedLoadWriteStore . |
Modifier and Type | Method and Description |
---|---|
CloseableIterator<Map.Entry<Object,Object>> |
RemoteCache.retrieveEntries(String filterConverterFactory,
int batchSize) |
CloseableIterator<Map.Entry<Object,Object>> |
RemoteCache.retrieveEntries(String filterConverterFactory,
Object[] filterConverterParams,
Set<Integer> segments,
int batchSize)
Retrieve entries from the server
|
CloseableIterator<Map.Entry<Object,Object>> |
RemoteCache.retrieveEntries(String filterConverterFactory,
Set<Integer> segments,
int batchSize) |
CloseableIterator<Map.Entry<Object,Object>> |
RemoteCache.retrieveEntriesByQuery(Query filterQuery,
Set<Integer> segments,
int batchSize)
Retrieve entries from the server matching a query.
|
CloseableIterator<Map.Entry<Object,MetadataValue<Object>>> |
RemoteCache.retrieveEntriesWithMetadata(Set<Integer> segments,
int batchSize)
Retrieve entries with metadata information
|
Modifier and Type | Class and Description |
---|---|
class |
CloseableIteratorMapper<E,S>
Deprecated.
since 9.3 users can just use
IteratorMapper as it handles CloseableIterators now |
class |
ConcatIterator<E>
Iterator that concatenates a bunch of iterables into 1 big iterator.
|
class |
FilterIterator<E>
Iterator that also filters out entries based on the provided predicate.
|
class |
IteratorMapper<E,S>
A iterator that maps each value to the output of the Function.
|
class |
RemovableCloseableIterator<C>
A CloseableIterator implementation that allows for a CloseableIterator that doesn't allow remove operations to
implement remove by delegating the call to the provided consumer to remove the previously read value.
|
Modifier and Type | Field and Description |
---|---|
protected CloseableIterator<C> |
RemovableCloseableIterator.realIterator |
Modifier and Type | Method and Description |
---|---|
CloseableIterator<E> |
CloseableIteratorCollectionAdapter.iterator() |
CloseableIterator<E> |
CloseableIteratorCollection.iterator() |
CloseableIterator<E> |
CloseableIterable.iterator() |
static <R> CloseableIterator<R> |
Closeables.iterator(BaseStream<R,Stream<R>> stream)
Creates a closeable iterator that when closed will close the underlying stream as well
|
static <E> CloseableIterator<E> |
Closeables.iterator(Iterator<? extends E> iterator)
Creates a closeable iterator from the given iterator that does nothing when close is called.
|
Modifier and Type | Method and Description |
---|---|
static <E> CloseableSpliterator<E> |
Closeables.spliterator(CloseableIterator<? extends E> iterator,
long size,
int characteristics)
Takes a provided closeable iterator and wraps it appropriately so it can be used as a closeable spliterator that
will close the iterator when the spliterator is closed.
|
static <E> Stream<E> |
Closeables.stream(CloseableIterator<E> iterator,
boolean parallel,
long size,
int characteristics)
Creates a stream that when closed will also close the underlying iterator
|
Constructor and Description |
---|
RemovableCloseableIterator(CloseableIterator<C> realIterator,
Consumer<? super C> consumer) |
Modifier and Type | Method and Description |
---|---|
CloseableIterator<Integer> |
FileProvider.getFileIterator() |
Copyright © 2020 JBoss, a division of Red Hat. All rights reserved.