pub type SessionEntry<P, CP> = Arc<RwLock<SessionRunner<P, CP>>>;Expand description
Single registry entry: one Arc<RwLock<SessionRunner>> per conversation.
Cloned out of the registry under the outer read lock, then locked
independently — writes on one conversation don’t block reads on another.
Aliased Type§
pub struct SessionEntry<P, CP> { /* private fields */ }