Uses of Interface
org.infinispan.commons.util.CloseableSpliterator
-
Packages that use CloseableSpliterator Package Description org.infinispan.commons.util Commons package providing various utility classesorg.infinispan.interceptors.distribution Interceptors dealing with command replication in distributed/replicated mode.org.infinispan.util 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 CloseableSpliterator in org.infinispan.commons.util
Classes in org.infinispan.commons.util that implement CloseableSpliterator Modifier and Type Class Description class
CloseableSpliteratorMapper<E,S>
Deprecated.since 9.3 users can just useSpliteratorMapper
as it handles CloseableSpliterators nowclass
FilterSpliterator<T>
Spliterator that only returns entries that pass the given predicate.class
SpliteratorMapper<E,S>
A spliterator that has been mapped from another spliterator.Methods in org.infinispan.commons.util that return CloseableSpliterator Modifier and Type Method Description CloseableSpliterator<E>
CloseableIteratorCollection. spliterator()
CloseableSpliterator<E>
CloseableIteratorCollectionAdapter. spliterator()
CloseableSpliterator<E>
CloseableIteratorSet. spliterator()
CloseableSpliterator<E>
CloseableIteratorSetAdapter. spliterator()
static <T> CloseableSpliterator<T>
Closeables. spliterator(java.util.Spliterator<T> spliterator)
Creates a closeable spliterator from the given spliterator that does nothing when close is called.static <R> CloseableSpliterator<R>
Closeables. spliterator(java.util.stream.BaseStream<R,java.util.stream.Stream<R>> stream)
Creates a closeable spliterator that when closed will close the underlying stream as wellstatic <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.Methods in org.infinispan.commons.util with parameters of type CloseableSpliterator Modifier and Type Method Description static <E> java.util.stream.Stream<E>
Closeables. stream(CloseableSpliterator<E> spliterator, boolean parallel)
Creates a stream that when closed will also close the underlying spliterator -
Uses of CloseableSpliterator in org.infinispan.interceptors.distribution
Methods in org.infinispan.interceptors.distribution that return CloseableSpliterator Modifier and Type Method Description CloseableSpliterator<CacheEntry<K,V>>
DistributionBulkInterceptor.BackingEntrySet. spliterator()
CloseableSpliterator<K>
DistributionBulkInterceptor.BackingKeySet. spliterator()
-
Uses of CloseableSpliterator in org.infinispan.util
Methods in org.infinispan.util that return CloseableSpliterator Modifier and Type Method Description CloseableSpliterator<E>
AbstractDelegatingCloseableIteratorCollection. spliterator()
CloseableSpliterator<E>
AbstractDelegatingCloseableIteratorSet. spliterator()
CloseableSpliterator<R>
CacheSetMapper. spliterator()
CloseableSpliterator<R>
WriteableCacheCollectionMapper. spliterator()
-