Uses of Interface
com.hazelcast.jet.function.TriPredicate
Package
Description
Serializable and exception-declaring variants of functional interfaces from
java.util.function
.The Pipeline API is Jet's high-level API to build and execute
distributed computation jobs.
-
Uses of TriPredicate in com.hazelcast.jet.function
Modifier and TypeMethodDescriptiondefault TriPredicate<T,
U, V> TriPredicate.and
(TriPredicate<? super T, ? super U, ? super V> other) Returns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) && other.test(t, u, v)
.default TriPredicate<T,
U, V> TriPredicate.negate()
Returns a composite predicate which evaluates the equivalent of!this.test(t, u, v)
.default TriPredicate<T,
U, V> TriPredicate.or
(TriPredicate<? super T, ? super U, ? super V> other) Returns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) || other.test(t, u, v)
.Modifier and TypeMethodDescriptiondefault TriPredicate<T,
U, V> TriPredicate.and
(TriPredicate<? super T, ? super U, ? super V> other) Returns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) && other.test(t, u, v)
.default TriPredicate<T,
U, V> TriPredicate.or
(TriPredicate<? super T, ? super U, ? super V> other) Returns a composite predicate which evaluates the equivalent ofthis.test(t, u, v) || other.test(t, u, v)
. -
Uses of TriPredicate in com.hazelcast.jet.pipeline
Modifier and TypeMethodDescription<S> BatchStage<T>
BatchStageWithKey.filterUsingService
(ServiceFactory<?, S> serviceFactory, TriPredicate<? super S, ? super K, ? super T> filterFn) <S> GeneralStage<T>
GeneralStageWithKey.filterUsingService
(ServiceFactory<?, S> serviceFactory, TriPredicate<? super S, ? super K, ? super T> filterFn) Deprecated.<S> StreamStage<T>
StreamStageWithKey.filterUsingService
(ServiceFactory<?, S> serviceFactory, TriPredicate<? super S, ? super K, ? super T> filterFn)
GeneralStage.rebalance()
andGeneralStage.rebalance(FunctionEx)
.