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 targetOperatorID
for the bootstrapped operator, as well as theStateBootstrapTransformation
that defines how the state is bootstrapped.
-
-
Constructor Summary
Constructors Constructor Description StateBootstrapTransformationWithID(OperatorIdentifier operatorIdentifier, StateBootstrapTransformation<T> bootstrapTransformation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StateBootstrapTransformation<T>
getBootstrapTransformation()
OperatorIdentifier
getOperatorIdentifier()
-
-
-
Constructor Detail
-
StateBootstrapTransformationWithID
public StateBootstrapTransformationWithID(OperatorIdentifier operatorIdentifier, StateBootstrapTransformation<T> bootstrapTransformation)
-
-
Method Detail
-
getOperatorIdentifier
public OperatorIdentifier getOperatorIdentifier()
-
getBootstrapTransformation
public StateBootstrapTransformation<T> getBootstrapTransformation()
-
-