Uses of Class
com.hazelcast.jet.core.Edge
Packages that use Edge
-
Uses of Edge in com.hazelcast.jet.core
Methods in com.hazelcast.jet.core that return EdgeModifier and TypeMethodDescriptionEdge.allToOne()
Activates a special-casedPARTITIONED
routing policy where all items will be routed to the same partition ID.Activates a special-casedPARTITIONED
routing policy where all items will be routed to the same partition ID, determined from the givenkey
.static Edge
Returns an edge between two vertices.Edge.broadcast()
Activates theBROADCAST
routing policy.Edge.distributed()
Declares that the edge is distributed.Edge.distributeTo
(Address targetMember) Declares that all items sent over this edge will be delivered to the specified member.Edge.fanout()
Activates theFANOUT
routing policy.static Edge
Returns an edge with the given source vertex and no destination vertex.static Edge
Returns an edge with the given source vertex at the given ordinal and no destination vertex.Edge.isolated()
Activates theISOLATED
routing policy which establishes isolated paths from upstream to downstream processors.Edge.local()
Declares that the edge is local.Edge.ordered
(ComparatorEx<?> comparator) Specifies that the data traveling on this edge is ordered according to the provided comparator.<T> Edge
Edge.partitioned
(FunctionEx<T, ?> extractKeyFn) Activates thePARTITIONED
routing policy and applies thedefault
Hazelcast partitioning strategy.<T,
K> Edge Edge.partitioned
(FunctionEx<T, K> extractKeyFn, Partitioner<? super K> partitioner) Activates thePARTITIONED
routing policy and applies the provided partitioning strategy.Edge.priority
(int priority) Sets the priority of the edge.Edge.setConfig
(EdgeConfig config) Assigns anEdgeConfig
to this edge.Sets the destination vertex of this edge, with ordinal 0.Sets the destination vertex and ordinal of this edge.Edge.unicast()
Chooses theUNICAST
routing policy for this edge.Methods in com.hazelcast.jet.core that return types with arguments of type EdgeModifier and TypeMethodDescriptionDAG.edgeIterator()
Returns an iterator over the DAG's edges in unspecified order.DAG.getInboundEdges
(String vertexName) Returns the inbound edges connected to the vertex with the given name.DAG.getOutboundEdges
(String vertexName) Returns the outbound edges connected to the vertex with the given name.Methods in com.hazelcast.jet.core with parameters of type Edge