Class StateBootstrapTransformationWithID<T>
- java.lang.Object
-
- org.apache.flink.state.api.runtime.StateBootstrapTransformationWithID<T>
-
@Internal public class StateBootstrapTransformationWithID<T> extends Object
A simple container class that represents a newly bootstrapped operator state within savepoints. It wraps the targetOperatorIDfor the bootstrapped operator, as well as theStateBootstrapTransformationthat defines how the state is bootstrapped.
-
-
Constructor Summary
Constructors Constructor Description StateBootstrapTransformationWithID(org.apache.flink.runtime.jobgraph.OperatorID operatorID, StateBootstrapTransformation<T> bootstrapTransformation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StateBootstrapTransformation<T>getBootstrapTransformation()org.apache.flink.runtime.jobgraph.OperatorIDgetOperatorID()
-
-
-
Constructor Detail
-
StateBootstrapTransformationWithID
public StateBootstrapTransformationWithID(org.apache.flink.runtime.jobgraph.OperatorID operatorID, StateBootstrapTransformation<T> bootstrapTransformation)
-
-
Method Detail
-
getOperatorID
public org.apache.flink.runtime.jobgraph.OperatorID getOperatorID()
-
getBootstrapTransformation
public StateBootstrapTransformation<T> getBootstrapTransformation()
-
-