nexus-agents - v2.80.0
    Preparing search index...

    Interface ICheckpointStore

    Abstract checkpoint store interface. Implementations provide persistence (in-memory, JSON file, SQLite, etc.).

    interface ICheckpointStore {
        save(checkpoint: Checkpoint): void;
        load(id: string): Checkpoint | undefined;
        latest(executionId: string): Checkpoint | undefined;
        list(executionId: string): readonly CheckpointSummary[];
        delete(id: string): boolean;
        deleteExecution(executionId: string): number;
        size(): number;
        clear(): void;
    }

    Implemented by

    Index

    Methods