Skip to main content

WorkingMemory

Type Alias WorkingMemory 

Source
pub type WorkingMemory = Arc<Mutex<HashMap<String, Value>>>;
Expand description

Session-scoped store backing {{memory.<key>}}. Shared (Arc) so it survives across Executor::run calls within a FlowApp session, and interior-mutable (Mutex) so a node can write it through &self.

Aliased Typeยง

pub struct WorkingMemory { /* private fields */ }