Uses of Interface
org.infinispan.commons.util.CloseableIterator
Packages that use CloseableIterator
Package
Description
This is the core of Infinispan, a distributed, transactional, highly scalable data grid
platform.
Hot Rod client API.
Commons package providing various utility classes
Soft Index
AdvancedLoadWriteStore
.Query module internals.
General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and
collections and containers designed to supplement the JDK-provided containers.
-
Uses of CloseableIterator in org.infinispan
Methods in org.infinispan that return CloseableIterator -
Uses of CloseableIterator in org.infinispan.cache.impl
Methods in org.infinispan.cache.impl that return CloseableIterator -
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.client.hotrod.impl
Methods in org.infinispan.client.hotrod.impl that return CloseableIteratorModifier and TypeMethodDescriptionDelegatingRemoteCache.entryIterator
(IntSet segments) InternalRemoteCache.entryIterator
(IntSet segments) RemoteCacheImpl.entryIterator
(IntSet segments) DelegatingRemoteCache.keyIterator
(IntSet segments) InternalRemoteCache.keyIterator
(IntSet segments) RemoteCacheImpl.keyIterator
(IntSet segments) DelegatingRemoteCache.retrieveEntries
(String filterConverterFactory, Object[] filterConverterParams, Set<Integer> segments, int batchSize) RemoteCacheImpl.retrieveEntries
(String filterConverterFactory, Object[] filterConverterParams, Set<Integer> segments, int batchSize) DelegatingRemoteCache.retrieveEntriesByQuery
(Query<?> filterQuery, Set<Integer> segments, int batchSize) RemoteCacheImpl.retrieveEntriesByQuery
(Query<?> filterQuery, Set<Integer> segments, int batchSize) DelegatingRemoteCache.retrieveEntriesWithMetadata
(Set<Integer> segments, int batchSize) RemoteCacheImpl.retrieveEntriesWithMetadata
(Set<Integer> segments, int batchSize) -
Uses of CloseableIterator in org.infinispan.commons.api.query
Subinterfaces of CloseableIterator in org.infinispan.commons.api.queryMethods in org.infinispan.commons.api.query that return CloseableIterator -
Uses of CloseableIterator in org.infinispan.commons.util
Classes in org.infinispan.commons.util that implement CloseableIteratorModifier and TypeClassDescriptionclass
Iterator that concatenates a bunch of iterables into 1 big iterator.class
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
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 CloseableIteratorModifier and TypeFieldDescriptionprotected final CloseableIterator
<C> RemovableCloseableIterator.realIterator
Methods 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 aPublisher
to aCloseableIterator
by 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.functional.impl
Methods in org.infinispan.functional.impl that return CloseableIteratorModifier and TypeMethodDescriptionstatic <T> CloseableIterator
<T> Traversables.asIterator
(Traversable<T> traversable) -
Uses of CloseableIterator in org.infinispan.persistence.sifs
Methods in org.infinispan.persistence.sifs that return CloseableIterator -
Uses of CloseableIterator in org.infinispan.query.impl
Classes in org.infinispan.query.impl that implement CloseableIteratorModifier and TypeClassDescriptionclass
Adaptor to use a linkSearchScroll
as an iterator.Methods in org.infinispan.query.impl that return CloseableIterator -
Uses of CloseableIterator in org.infinispan.server.hotrod
Methods in org.infinispan.server.hotrod with parameters of type CloseableIteratorModifier and TypeMethodDescriptionio.netty.buffer.ByteBuf
VersionedEncoder.bulkGetKeysResponse
(HotRodHeader header, HotRodServer server, io.netty.channel.Channel channel, CloseableIterator<byte[]> iterator) -
Uses of CloseableIterator in org.infinispan.stream.impl
Classes in org.infinispan.stream.impl that implement CloseableIteratorConstructors in org.infinispan.stream.impl with parameters of type CloseableIteratorModifierConstructorDescriptionRemovableCloseableIterator
(CloseableIterator<C> realIterator, Cache<K, ?> cache, Function<? super C, K> removeFunction) Deprecated. -
Uses of CloseableIterator in org.infinispan.util
Classes in org.infinispan.util that implement CloseableIteratorModifier and TypeClassDescriptionclass
class
Iterator implementation that will return all entries from the first iterator.Methods in org.infinispan.util that return CloseableIteratorModifier and TypeMethodDescriptionCacheSetMapper.iterator()
static <E> CloseableIterator
<E> Closeables.iterator
(org.reactivestreams.Publisher<E> publisher, int fetchSize) Deprecated, for removal: This API element is subject to removal in a future version.since 11.0 Please useCloseables.iterator(Publisher, int)
instead.WriteableCacheCollectionMapper.iterator()
Constructors in org.infinispan.util with parameters of type CloseableIteratorModifierConstructorDescriptionLazyConcatIterator
(CloseableIterator<E> first, Supplier<? extends CloseableIterator<E>> supplier) Constructor parameters in org.infinispan.util with type arguments of type CloseableIteratorModifierConstructorDescriptionLazyConcatIterator
(CloseableIterator<E> first, Supplier<? extends CloseableIterator<E>> supplier)
RemovableCloseableIterator
instead