Class RestoredCheckpointStats
- java.lang.Object
-
- org.apache.flink.runtime.checkpoint.RestoredCheckpointStats
-
- All Implemented Interfaces:
Serializable
public class RestoredCheckpointStats extends Object implements Serializable
Statistics for a restored checkpoint.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCheckpointId()Returns the ID of this checkpoint.StringgetExternalPath()Returns the external path if this checkpoint was persisted externally.CheckpointPropertiesgetProperties()Returns the properties of the restored checkpoint.longgetRestoreTimestamp()Returns the timestamp when the checkpoint was restored.
-
-
-
Method Detail
-
getCheckpointId
public long getCheckpointId()
Returns the ID of this checkpoint.- Returns:
- ID of this checkpoint.
-
getProperties
public CheckpointProperties getProperties()
Returns the properties of the restored checkpoint.- Returns:
- Properties of the restored checkpoint.
-
getRestoreTimestamp
public long getRestoreTimestamp()
Returns the timestamp when the checkpoint was restored.- Returns:
- Timestamp when the checkpoint was restored.
-
-