Uses of Interface
org.infinispan.util.function.SerializableBinaryOperator
Package
Description
This is the core of Infinispan, a distributed, transactional, highly scalable data grid
platform.
-
Uses of SerializableBinaryOperator in org.infinispan
Modifier and TypeMethodDescriptionCacheStream.reduce
(SerializableBinaryOperator<R> accumulator) Same asStream.reduce(BinaryOperator)
except that the BinaryOperator must also implementSerializable
default R
CacheStream.reduce
(R identity, SerializableBinaryOperator<R> accumulator) Same asStream.reduce(Object, BinaryOperator)
except that the BinaryOperator must also implementSerializable
default <U> U
CacheStream.reduce
(U identity, SerializableBiFunction<U, ? super R, U> accumulator, SerializableBinaryOperator<U> combiner) Same asStream.reduce(Object, BiFunction, BinaryOperator)
except that the BinaryOperator must also implementSerializable