Uses of Interface
org.infinispan.commons.util.CloseableSpliterator
Package
Description
This is the core of Infinispan, a distributed, transactional, highly scalable data grid
platform.
Commons package providing various utility classes
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
-
Uses of CloseableSpliterator in org.infinispan.cache.impl
Modifier and TypeMethodDescriptionAbstractCacheBackedSet.spliterator()
SimpleCacheImpl.CacheEntrySet.spliterator()
SimpleCacheImpl.EntrySet.spliterator()
SimpleCacheImpl.KeySet.spliterator()
SimpleCacheImpl.Values.spliterator()
-
Uses of CloseableSpliterator in org.infinispan.commons.util
Modifier and TypeClassDescriptionclass
Spliterator that only returns entries that pass the given predicate.class
SpliteratorMapper<E,
S> A spliterator that has been mapped from another spliterator.Modifier and TypeMethodDescriptionCloseableIteratorCollection.spliterator()
CloseableIteratorCollectionAdapter.spliterator()
CloseableIteratorSet.spliterator()
CloseableIteratorSetAdapter.spliterator()
static <T> CloseableSpliterator<T>
Closeables.spliterator
(Spliterator<T> spliterator) Creates a closeable spliterator from the given spliterator that does nothing when close is called.static <R> CloseableSpliterator<R>
Closeables.spliterator
(BaseStream<R, 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.Modifier and TypeMethodDescriptionstatic <E> 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.util
Modifier and TypeMethodDescriptionCacheSetMapper.spliterator()
WriteableCacheCollectionMapper.spliterator()