Expand description
Thread-safe shared state for parallel agent coordination.
SharedState is a concurrent key-value store scoped to a single
ParallelAgent::run() invocation. Sub-agents use SharedState::set_shared,
SharedState::get_shared, and SharedState::wait_for_key to exchange data and coordinate.
Structs§
- Shared
State - Thread-safe key-value store for parallel agent coordination.
Enums§
- Shared
State Error - Errors from
SharedStateoperations.