Versions in this module Expand all Collapse all v1 v1.16.3 Nov 9, 2022 Changes in this version + type Checkpoint interface + MarshalCheckpoint func() ([]byte, error) + UnmarshalCheckpoint func(blob []byte) error + VerifyChecksum func() error + type CheckpointManager interface + CreateCheckpoint func(checkpointKey string, checkpoint Checkpoint) error + GetCheckpoint func(checkpointKey string, checkpoint Checkpoint) error + ListCheckpoints func() ([]string, error) + RemoveCheckpoint func(checkpointKey string) error + func NewCheckpointManager(checkpointDir string) (CheckpointManager, error)