Uses of Class
org.infinispan.stream.impl.AbstractCacheStream
-
Packages that use AbstractCacheStream Package Description org.infinispan.stream.impl org.infinispan.stream.impl.tx -
-
Uses of AbstractCacheStream in org.infinispan.stream.impl
Subclasses of AbstractCacheStream in org.infinispan.stream.impl Modifier and Type Class Description class
DistributedCacheStream<Original,R>
Implementation ofCacheStream
that provides support for lazily distributing stream methods to appropriate nodesclass
DistributedDoubleCacheStream<Original>
Implementation ofDoubleStream
that utilizes a lazily evaluated distributed back end execution.class
DistributedIntCacheStream<Original>
Implementation ofIntStream
that utilizes a lazily evaluated distributed back end execution.class
DistributedLongCacheStream<Original>
Implementation ofLongStream
that utilizes a lazily evaluated distributed back end execution.Constructors in org.infinispan.stream.impl with parameters of type AbstractCacheStream Constructor Description AbstractCacheStream(AbstractCacheStream<Original,T,S,S2> other)
DistributedCacheStream(AbstractCacheStream other)
This constructor is to be used only when a user calls a map or flat map method changing back to a regular Stream from an IntStream, DoubleStream etc.DistributedDoubleCacheStream(AbstractCacheStream other)
This constructor is to be used only when a user calls a map or flat map method changing to a DoubleStream from a CacheStream, Stream, IntStream, LongStream etc.DistributedIntCacheStream(AbstractCacheStream other)
This constructor is to be used only when a user calls a map or flat map method changing to an IntStream from a CacheStream, Stream, DoubleStream, LongStream etc.DistributedLongCacheStream(AbstractCacheStream other)
This constructor is to be used only when a user calls a map or flat map method changing to an IntStream from a CacheStream, Stream, DoubleStream, IntStream etc. -
Uses of AbstractCacheStream in org.infinispan.stream.impl.tx
Subclasses of AbstractCacheStream in org.infinispan.stream.impl.tx Modifier and Type Class Description class
TxDistributedCacheStream<Original,R,K,V>
A distributed cache stream that also utilizes transactional awareness.class
TxDistributedDoubleCacheStream<Original,K,V>
Double variant of tx cache streamclass
TxDistributedIntCacheStream<Original,K,V>
Int variant of tx cache streamclass
TxDistributedLongCacheStream<Original,K,V>
Long variant of tx cache stream
-