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

Method delete_session

src/crates/execution/agent-runtime/src/runtime.rs:455–467  ·  view source on GitHub ↗
(
        &self,
        request: AgentSessionDeleteRequest,
    )

Source from the content-addressed store, hash-verified

453 }
454
455 pub async fn delete_session(
456 &self,
457 request: AgentSessionDeleteRequest,
458 ) -> Result<(), RuntimeError> {
459 let session_management = self
460 .session_management
461 .as_ref()
462 .ok_or(RuntimeError::MissingSessionManagementPort)?;
463 session_management
464 .delete_session(request)
465 .await
466 .map_err(RuntimeError::from)
467 }
468
469 pub async fn resolve_session_workspace_binding(
470 &self,

Callers 9

delete_sessionFunction · 0.45
delete_persisted_sessionFunction · 0.45
handle_session_actionFunction · 0.45
handle_session_deleteMethod · 0.45
handle_session_deleteMethod · 0.45
dispatchFunction · 0.45

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected