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

Method Compact

backend/session.go:284–298  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

282 }()
283 return nil
284}
285
286func (c *SessionController) Abort() {
287 c.engine.Abort()
288 c.submitMu.Lock()
289 cancel := c.submitCancel
290 c.submitMu.Unlock()
291 if cancel != nil {
292 cancel()
293 }
294 c.emitStatus("aborted", nil)
295}
296
297func (c *SessionController) Shutdown() {
298 c.Abort()
299 if c.engine != nil {
300 c.engine.Shutdown()
301 }

Callers 1

dispatchResultMethod · 0.45

Calls 2

SaveMethod · 0.95
MountStateSnapshotMethod · 0.80

Tested by

no test coverage detected