MCPcopy Create free account
hub / github.com/compozy/agh / newInMemoryManagerStore

Function newInMemoryManagerStore

internal/task/manager_test.go:323–337  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

321}
322
323func newInMemoryManagerStore() *inMemoryManagerStore {
324 return &inMemoryManagerStore{
325 tasks: make(map[string]Task),
326 blocks: make(map[string]map[string]TaskBlock),
327 blockRecurrences: make(map[string]BlockRecurrence),
328 dependencies: make(map[string]map[string]Dependency),
329 runs: make(map[string]Run),
330 triageStates: make(map[string]TriageState),
331 profiles: make(map[string]ExecutionProfile),
332 reviews: make(map[string]RunReview),
333 events: make([]Event, 0),
334 eventSequenceByID: make(map[string]int64),
335 idempotencyByKey: make(map[string]RunIdempotency),
336 }
337}
338
339func newForceInputStore() *forceInputStore {
340 return &forceInputStore{

Calls

no outgoing calls

Tested by

no test coverage detected