Uses of Interface
org.infinispan.commons.util.CloseableIterator
-
Packages that use CloseableIterator Package Description org.infinispan.client.hotrod Hot Rod client API.org.infinispan.commons.util Commons package providing various utility classes -
-
Uses of CloseableIterator in org.infinispan.client.hotrod
Methods in org.infinispan.client.hotrod that return CloseableIterator Modifier and Type Method 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 serverCloseableIterator<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 -
Uses of CloseableIterator in org.infinispan.commons.util
Classes in org.infinispan.commons.util that implement CloseableIterator Modifier and Type Class Description class
CloseableIteratorMapper<E,S>
Deprecated.since 9.3 users can just useIteratorMapper
as it handles CloseableIterators nowclass
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.Fields in org.infinispan.commons.util declared as CloseableIterator Modifier and Type Field Description protected CloseableIterator<C>
RemovableCloseableIterator. realIterator
Methods in org.infinispan.commons.util that return CloseableIterator Modifier and Type Method Description CloseableIterator<E>
CloseableIterable. iterator()
CloseableIterator<E>
CloseableIteratorCollection. iterator()
CloseableIterator<E>
CloseableIteratorCollectionAdapter. iterator()
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.static <R> CloseableIterator<R>
Closeables. iterator(BaseStream<R,Stream<R>> stream)
Creates a closeable iterator that when closed will close the underlying stream as wellMethods in org.infinispan.commons.util with parameters of type CloseableIterator Modifier and Type Method 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 iteratorConstructors in org.infinispan.commons.util with parameters of type CloseableIterator Constructor Description RemovableCloseableIterator(CloseableIterator<C> realIterator, Consumer<? super C> consumer)
-