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 String
getEdgeId()
Boolean
getIntraInputKeyCorrelated()
StreamPartitioner<?>
getOutputPartitioner()
Integer
getSourceId()
Integer
getTargetId()
int
getTypeNumber()
StreamEdgeUpdateRequestInfo
withIntraInputKeyCorrelated(boolean intraInputKeyCorrelated)
StreamEdgeUpdateRequestInfo
withOutputPartitioner(StreamPartitioner<?> outputPartitioner)
StreamEdgeUpdateRequestInfo
withTypeNumber(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()
-
-