MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / cancelRecordCleanupLocked

Method cancelRecordCleanupLocked

agent/task_runtime.go:933–938  ·  view source on GitHub ↗
(taskID string)

Source from the content-addressed store, hash-verified

931}
932
933func (rt *AgentTaskRuntime) cancelRecordCleanupLocked(taskID string) {
934 if cancel := rt.recordCleanupCancels[taskID]; cancel != nil {
935 cancel()
936 }
937 delete(rt.recordCleanupCancels, taskID)
938}
939
940func (rt *AgentTaskRuntime) cancelAllRecordCleanupLocked() {
941 for taskID, cancel := range rt.recordCleanupCancels {

Callers 1

CleanupScopeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected