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

Struct BackgroundManager

tools/bash/background.go:45–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43
44type BackgroundManager struct {
45 tasks map[string]*BackgroundTask
46 running map[string]*RunningTask
47 sessionDir string
48 resultDir string
49 mu sync.Mutex
50}
51
52func NewBackgroundManager(sessionDir string) (*BackgroundManager, error) {
53 return NewBackgroundManagerForResults(filepath.Join(sessionDir, "tool-results"))
54}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected