Uses of Class
org.infinispan.stream.impl.AbstractCacheStream
-
Packages that use AbstractCacheStream Package Description org.infinispan.stream.impl -
-
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.
-