Class ExecutionVertexInputInfo
- java.lang.Object
-
- org.apache.flink.runtime.executiongraph.ExecutionVertexInputInfo
-
- All Implemented Interfaces:
Serializable
public class ExecutionVertexInputInfo extends Object implements Serializable
This class describe the inputs(partitions and subpartitions that belong to the same intermediate result) information of an execution vertex.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutionVertexInputInfo(int subtaskIndex, Map<IndexRange,IndexRange> consumedSubpartitionGroups)
ExecutionVertexInputInfo(int subtaskIndex, IndexRange partitionIndexRange, IndexRange subpartitionIndexRange)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Map<IndexRange,IndexRange>
getConsumedSubpartitionGroups()
Get the subpartition groups this subtask should consume.int
getSubtaskIndex()
Get the index of this subtask.
-
-
-
Constructor Detail
-
ExecutionVertexInputInfo
public ExecutionVertexInputInfo(int subtaskIndex, IndexRange partitionIndexRange, IndexRange subpartitionIndexRange)
-
ExecutionVertexInputInfo
public ExecutionVertexInputInfo(int subtaskIndex, Map<IndexRange,IndexRange> consumedSubpartitionGroups)
-
-
Method Detail
-
getConsumedSubpartitionGroups
public Map<IndexRange,IndexRange> getConsumedSubpartitionGroups()
Get the subpartition groups this subtask should consume.
-
getSubtaskIndex
public int getSubtaskIndex()
Get the index of this subtask.
-
-