reactive_graph_behaviour_model_impl/behaviour/
storage.rs1use std::sync::Arc;
2
3use dashmap::DashMap;
4
5use reactive_graph_behaviour_model_api::prelude::*;
6
7pub type BehaviourStorage<ID, T> = DashMap<ID, DashMap<BehaviourTypeId, Arc<dyn BehaviourFsm<ID, T> + Send + Sync>>>;