Interface OperatorInfo
-
- All Known Subinterfaces:
OperatorCoordinatorCheckpointContext
- All Known Implementing Classes:
OperatorCoordinatorHolder
public interface OperatorInfoAn interface to access basic properties of an operator in the context of its coordinator.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description intcurrentParallelism()static Collection<OperatorID>getIds(Collection<? extends OperatorInfo> infos)intmaxParallelism()OperatorIDoperatorId()
-
-
-
Method Detail
-
operatorId
OperatorID operatorId()
-
maxParallelism
int maxParallelism()
-
currentParallelism
int currentParallelism()
-
getIds
static Collection<OperatorID> getIds(Collection<? extends OperatorInfo> infos)
-
-