Skip to content

Graphorin API reference v0.1.0


Graphorin API reference / @graphorin/workflow / checkpoint-store-memory

checkpoint-store-memory

In-memory CheckpointStore adapter. Useful in tests, REPL sessions, and small examples where SQLite would be overkill. The production-grade adapter lives in @graphorin/store-sqlite.

Classes

ClassDescription
InMemoryCheckpointStorePure in-memory CheckpointStore implementation. Thread-safe within a single Node.js event loop because every mutation is synchronous; concurrent runs that share the same instance will see a consistent view.