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 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 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: tuple[str, ...]
    )

    Constructors

    constructor
    __init__
    NameType
    run_idUUID | None
    statusGraphLifecycleStatus
    checkpoint_idstr
    checkpoint_nstuple[str, ...]

    Attributes

    attribute
    run_id: UUID | None

    Run id for the current graph execution, if available.

    attribute
    status: GraphLifecycleStatus

    Loop status when the resume was captured.

    attribute
    checkpoint_id: str

    Checkpoint id the graph resumed from.

    attribute
    checkpoint_ns: tuple[str, ...]

    Checkpoint namespace path for the current graph or subgraph.

    View source on GitHub