Uses of Interface
org.infinispan.commons.util.CloseableIterator
Packages that use CloseableIterator
Package
Description
Hot Rod client API.
Commons package providing various utility classes
Soft Index
AdvancedLoadWriteStore.Query DSL API.
-
Uses of CloseableIterator in org.infinispan.client.hotrod
Methods in org.infinispan.client.hotrod that return CloseableIteratorModifier and TypeMethodDescriptiondefault CloseableIterator<Map.Entry<Object,Object>> RemoteCache.retrieveEntries(String filterConverterFactory, int batchSize) RemoteCache.retrieveEntries(String filterConverterFactory, Object[] filterConverterParams, Set<Integer> segments, int batchSize) Retrieve entries from the server.default CloseableIterator<Map.Entry<Object,Object>> RemoteCache.retrieveEntries(String filterConverterFactory, Set<Integer> segments, int batchSize) RemoteCache.retrieveEntriesByQuery(Query<?> filterQuery, Set<Integer> segments, int batchSize) Retrieve entries from the server matching a query.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 CloseableIteratorModifier and TypeClassDescriptionclassIterator that concatenates a bunch of iterables into 1 big iterator.classIterator that also filters out entries based on the provided predicate.classIteratorMapper<E,S> A iterator that maps each value to the output of the Function.classA 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 CloseableIteratorModifier and TypeFieldDescriptionprotected final CloseableIterator<C>RemovableCloseableIterator.realIteratorMethods in org.infinispan.commons.util that return CloseableIteratorModifier and TypeMethodDescriptionCloseableIterable.iterator()CloseableIteratorCollection.iterator()CloseableIteratorCollectionAdapter.iterator()static <E> CloseableIterator<E>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 wellstatic <E> CloseableIterator<E>Closeables.iterator(org.reactivestreams.Publisher<E> publisher, int fetchSize) Converts aPublisherto aCloseableIteratorby utilizing items fetched into an array and refetched as they are consumed from the iterator.Methods in org.infinispan.commons.util with parameters of type CloseableIteratorModifier and TypeMethodDescriptionstatic <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 CloseableIteratorModifierConstructorDescriptionRemovableCloseableIterator(CloseableIterator<C> realIterator, Consumer<? super C> consumer) -
Uses of CloseableIterator in org.infinispan.persistence.sifs
Methods in org.infinispan.persistence.sifs that return CloseableIterator -
Uses of CloseableIterator in org.infinispan.query.dsl
Methods in org.infinispan.query.dsl that return CloseableIteratorModifier and TypeMethodDescription<K> CloseableIterator<Map.Entry<K,T>> Query.entryIterator()Returns aCloseableIteratorover the results, including both key and value.Query.iterator()Returns aCloseableIteratorover the results.