Uses of Interface
com.hazelcast.jet.core.Partitioner
Packages that use Partitioner
-
Uses of Partitioner in com.hazelcast.jet.core
Classes in com.hazelcast.jet.core that implement PartitionerModifier and TypeClassDescriptionstatic final class
Partitioner which applies the default Hazelcast partitioning strategy.Fields in com.hazelcast.jet.core declared as PartitionerModifier 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.Methods in com.hazelcast.jet.core that return PartitionerModifier 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.Methods in com.hazelcast.jet.core with parameters of type PartitionerModifier 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.