Class StreamEdgeUpdateRequestInfo
- java.lang.Object
-
- org.apache.flink.streaming.api.graph.util.StreamEdgeUpdateRequestInfo
-
@Internal public class StreamEdgeUpdateRequestInfo extends Object
Helper class carries the data required to updates a stream edge.
-
-
Constructor Summary
Constructors Constructor Description StreamEdgeUpdateRequestInfo(String edgeId, Integer sourceId, Integer targetId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEdgeId()BooleangetIntraInputKeyCorrelated()StreamPartitioner<?>getOutputPartitioner()IntegergetSourceId()IntegergetTargetId()intgetTypeNumber()StreamEdgeUpdateRequestInfowithIntraInputKeyCorrelated(boolean intraInputKeyCorrelated)StreamEdgeUpdateRequestInfowithOutputPartitioner(StreamPartitioner<?> outputPartitioner)StreamEdgeUpdateRequestInfowithTypeNumber(int typeNumber)
-
-
-
Method Detail
-
withOutputPartitioner
public StreamEdgeUpdateRequestInfo withOutputPartitioner(StreamPartitioner<?> outputPartitioner)
-
withTypeNumber
public StreamEdgeUpdateRequestInfo withTypeNumber(int typeNumber)
-
withIntraInputKeyCorrelated
public StreamEdgeUpdateRequestInfo withIntraInputKeyCorrelated(boolean intraInputKeyCorrelated)
-
getEdgeId
public String getEdgeId()
-
getSourceId
public Integer getSourceId()
-
getTargetId
public Integer getTargetId()
-
getOutputPartitioner
public StreamPartitioner<?> getOutputPartitioner()
-
getTypeNumber
public int getTypeNumber()
-
getIntraInputKeyCorrelated
@Nullable public Boolean getIntraInputKeyCorrelated()
-
-