Type alias MemoryConsistencyMode

MemoryConsistencyMode: "live" | "snapshot" | "journaled"

How the runtime handles in-flight memory reads/writes relative to concurrent graph branches.

  • live — always reads/writes the latest committed value; no isolation.
  • snapshot — reads a point-in-time snapshot taken at graph start; writes are deferred.
  • journaled — writes are appended to a journal and replayed atomically at commit.