Uses of Interface
com.hazelcast.jet.core.Partitioner
-
Uses of Partitioner in com.hazelcast.jet.core
Modifier and TypeClassDescriptionstatic final class
Partitioner which applies the default Hazelcast partitioning strategy.Modifier and TypeFieldDescriptionstatic final Partitioner<Object>
Partitioner.HASH_CODE
Partitioner which callsObject.hashCode()
and coerces it with the modulo operation into the allowed range of partition IDs.Modifier and TypeMethodDescriptionstatic Partitioner<Object>
Partitioner.defaultPartitioner()
Returns a partitioner which applies the default Hazelcast partitioning.Partitioner<?>
Edge.getPartitioner()
Returns the instance encapsulating the partitioning strategy in effect on this edge.Modifier and TypeMethodDescription<T,
K> Edge Edge.partitioned
(FunctionEx<T, K> extractKeyFn, Partitioner<? super K> partitioner) Activates thePARTITIONED
routing policy and applies the provided partitioning strategy.