Class IntermediateDataSetID
- java.lang.Object
-
- org.apache.flink.util.AbstractID
-
- org.apache.flink.runtime.jobgraph.IntermediateDataSetID
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractID>
,ResultID
public class IntermediateDataSetID extends AbstractID implements ResultID
Id identifyingIntermediateDataSet
.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.flink.util.AbstractID
lowerPart, SIZE, upperPart
-
-
Constructor Summary
Constructors Constructor Description IntermediateDataSetID()
Creates an new random intermediate data set ID.IntermediateDataSetID(UUID from)
Creates a new intermediate data set ID with the bytes of the given UUID.IntermediateDataSetID(AbstractID from)
Creates a new intermediate data set ID with the bytes of the given ID.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IntermediateDataSetID
fromByteBuf(org.apache.flink.shaded.netty4.io.netty.buffer.ByteBuf buf)
void
writeTo(org.apache.flink.shaded.netty4.io.netty.buffer.ByteBuf buf)
-
Methods inherited from class org.apache.flink.util.AbstractID
compareTo, equals, getBytes, getLowerPart, getUpperPart, hashCode, toHexString, toString
-
-
-
-
Constructor Detail
-
IntermediateDataSetID
public IntermediateDataSetID()
Creates an new random intermediate data set ID.
-
IntermediateDataSetID
public IntermediateDataSetID(AbstractID from)
Creates a new intermediate data set ID with the bytes of the given ID.- Parameters:
from
- The ID to create this ID from.
-
IntermediateDataSetID
public IntermediateDataSetID(UUID from)
Creates a new intermediate data set ID with the bytes of the given UUID.- Parameters:
from
- The UUID to create this ID from.
-
-
Method Detail
-
writeTo
public void writeTo(org.apache.flink.shaded.netty4.io.netty.buffer.ByteBuf buf)
-
fromByteBuf
public static IntermediateDataSetID fromByteBuf(org.apache.flink.shaded.netty4.io.netty.buffer.ByteBuf buf)
-
-