LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
    • Overview
    • Graphs
    • Functional API
    • Pregel
    • Checkpointing
    • Storage
    • Caching
    • Types
    • Runtime
    • Config
    • Errors
    • Constants
    • Channels
    • Agents
    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    OverviewGraphsFunctional APIPregelCheckpointingStorageCachingTypesRuntimeConfigErrorsConstantsChannelsAgents
    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    PythonlanggraphcallbacksGraphResumeEvent
    Classā—Since v1.1

    GraphResumeEvent

    Graph lifecycle event emitted when execution resumes from a checkpoint.

    Copy
    GraphResumeEvent(
      self,
      run_id: UUID | None,
      status: GraphLifecycleStatus,
      checkpoint_id: str,
      checkpoint_ns: 

    Constructors

    Attributes

    View source on GitHub
    tuple
    [
    str
    ,
    .
    .
    .
    ]
    )
    constructor
    __init__
    NameType
    run_idUUID | None
    statusGraphLifecycleStatus
    checkpoint_idstr
    checkpoint_nstuple[str, ...]
    attribute
    run_id: UUID | None
    attribute
    status: GraphLifecycleStatus
    attribute
    checkpoint_id: str
    attribute
    checkpoint_ns: tuple[str, ...]

    Run id for the current graph execution, if available.

    Loop status when the resume was captured.

    Checkpoint id the graph resumed from.

    Checkpoint namespace path for the current graph or subgraph.