arora-types 1.6.1

Shared type definitions for the Semio Arora framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! The Arora data interface.
//!
//! The shared, path-keyed blackboard that the HAL, the bridge, and execution
//! engines (behavior tree, modules) all agree on:
//!
//! - the vocabulary — [`Key`], [`State`], [`StateChange`] — lifted from
//!   `studio-bridge` so every consumer shares one definition;
//! - the [`DataStore`] trait (a shared, observable store) with a [`Slot`]
//!   direct-handle and a lean [`Subscription`] change feed.
//!
//! The canonical lean implementation lives in the `arora-simple-data-store`
//! crate (a simple hashmap store); richer backends can implement [`DataStore`]
//! too.
pub mod state;
pub mod store;

pub use state::{Change, Key, State, StateChange};
pub use store::{DataError, DataStore, Slot, Subscription};