MCPcopy Create free account
hub / github.com/GCWing/BitFun / insert

Method insert

src/crates/execution/agent-runtime/src/scheduler.rs:130–132  ·  view source on GitHub ↗
(&self, session_id: &str, turn: ActiveDialogTurn)

Source from the content-addressed store, hash-verified

128
129impl ActiveDialogTurnStore {
130 pub fn insert(&self, session_id: &str, turn: ActiveDialogTurn) {
131 self.inner.insert(session_id.to_string(), turn);
132 }
133
134 pub fn remove(&self, session_id: &str) -> Option<ActiveDialogTurn> {
135 self.inner.remove(session_id).map(|(_, turn)| turn)

Callers 15

group_search_resultsFunction · 0.45
register_searchFunction · 0.45
open_remote_workspaceFunction · 0.45
update_subagent_configFunction · 0.45
miniapp_ai_chatFunction · 0.45
get_health_statusMethod · 0.45
get_configsFunction · 0.45
normalize_skill_key_listFunction · 0.45

Calls

no outgoing calls