Uses of Interface
org.infinispan.LockedStream
Packages that use LockedStream
Package
Description
This is the core of Infinispan, a distributed, transactional, highly scalable data grid
platform.
-
Uses of LockedStream in org.infinispan
Subinterfaces with type arguments of type LockedStream in org.infinispanModifier and TypeInterfaceDescriptioninterface
LockedStream<K,
V> Stream that allows for operation upon data solely with side effects by usingforEach(BiConsumer)
where the BiConsumer is invoked while guaranteeing that the entry being passed is properly locked for the entire duration of the invocation.Methods in org.infinispan that return LockedStreamModifier and TypeMethodDescriptionLockedStream.disableRehashAware()
Disables tracking of rehash events that could occur to the underlying cache.LockedStream.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.LockedStream.filter
(Predicate<? super CacheEntry<K, V>> predicate) Returns a locked stream consisting of the elements of this stream that match the given predicate.default LockedStream
<K, V> LockedStream.filter
(SerializablePredicate<? super CacheEntry<K, V>> predicate) Same asfilter(Predicate)
except that the Predicate must also implementSerializable
LockedStream.filterKeys
(Set<?> keys) Filters which entries are returned by only returning ones that map to the given key.LockedStream.filterKeySegments
(IntSet segments) Filters which entries are returned by what segment they are present in.AdvancedCache.lockedStream()
Returns a sequential stream using this Cache as the source.LockedStream.parallelDistribution()
This would enable sending requests to all other remote nodes when a terminal operator is performed.LockedStream.segmentCompletionListener
(BaseCacheStream.SegmentCompletionListener listener) This method is not supported when using aLockedStream
LockedStream.sequentialDistribution()
This would disable sending requests to all other remote nodes compared to one at a time.Sets the timeout for the acquisition of the lock for each entry. -
Uses of LockedStream in org.infinispan.cache.impl
Methods in org.infinispan.cache.impl that return LockedStreamModifier and TypeMethodDescriptionAbstractDelegatingAdvancedCache.lockedStream()
CacheImpl.lockedStream()
DecoratedCache.lockedStream()
SimpleCacheImpl.lockedStream()
-
Uses of LockedStream in org.infinispan.security.impl
Methods in org.infinispan.security.impl that return LockedStream -
Uses of LockedStream in org.infinispan.stream.impl
Classes in org.infinispan.stream.impl that implement LockedStreamModifier and TypeClassDescriptionclass
LockedStreamImpl<K,
V> Lock Stream implementation that locks a key using theLockManager
before and after executing the various code.class
TxLockedStreamImpl<K,
V> Locked Stream that is designed for transactions.Methods in org.infinispan.stream.impl that return LockedStreamModifier and TypeMethodDescriptionLockedStreamImpl.disableRehashAware()
LockedStreamImpl.distributedBatchSize
(int batchSize) LockedStreamImpl.filter
(Predicate<? super CacheEntry<K, V>> predicate) LockedStreamImpl.filterKeys
(Set<?> keys) LockedStreamImpl.filterKeySegments
(IntSet segments) LockedStreamImpl.parallel()
LockedStreamImpl.parallelDistribution()
LockedStreamImpl.segmentCompletionListener
(BaseCacheStream.SegmentCompletionListener listener) LockedStreamImpl.sequential()
LockedStreamImpl.sequentialDistribution()
LockedStreamImpl.unordered()