Uses of Interface
org.infinispan.BaseCacheStream
-
Packages that use BaseCacheStream Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. -
-
Uses of BaseCacheStream in org.infinispan
Subinterfaces of BaseCacheStream in org.infinispan Modifier and Type Interface Description interfaceCacheStream<R>interfaceDoubleCacheStreamADoubleStreamthat has additional methods to allow for Serializable instances.interfaceIntCacheStreamAIntStreamthat has additional methods to allow for Serializable instances.interfaceLockedStream<K,V>Stream that allows for operation upon data solely with side effects by usingLockedStream.forEach(BiConsumer)where the BiConsumer is invoked while guaranteeing that the entry being passed is properly locked for the entire duration of the invocation.interfaceLongCacheStreamALongStreamthat has additional methods to allow for Serializable instances.Methods in org.infinispan that return BaseCacheStream Modifier and Type Method Description BaseCacheStreamBaseCacheStream. disableRehashAware()Disables tracking of rehash events that could occur to the underlying cache.BaseCacheStreamBaseCacheStream. distributedBatchSize(int batchSize)Controls how many keys are returned from a remote node when using a stream terminal operation with a distributed cache to back this stream.BaseCacheStreamBaseCacheStream. filterKeys(Set<?> keys)Filters which entries are returned by only returning ones that map to the given key.BaseCacheStreamBaseCacheStream. filterKeySegments(Set<Integer> segments)Deprecated.since 9.3 This is to be replaced byfilterKeySegments(IntSet)BaseCacheStreamBaseCacheStream. filterKeySegments(IntSet segments)Filters which entries are returned by what segment they are present in.BaseCacheStreamBaseCacheStream. parallelDistribution()This would enable sending requests to all other remote nodes when a terminal operator is performed.BaseCacheStreamBaseCacheStream. segmentCompletionListener(BaseCacheStream.SegmentCompletionListener listener)Allows registration of a segment completion listener that is notified when a segment has completed processing.BaseCacheStreamBaseCacheStream. sequentialDistribution()This would disable sending requests to all other remote nodes compared to one at a time.BaseCacheStreamBaseCacheStream. timeout(long timeout, TimeUnit unit)Sets a given time to wait for a remote operation to respond by.
-