MCPcopy Create free account
hub / github.com/astercloud/aster / CoordinatorActor

Struct CoordinatorActor

pkg/workflow/actor_engine.go:245–251  ·  view source on GitHub ↗

============== 协调器 Actor ============== CoordinatorActor 工作流协调器 Actor 负责协调多个 Agent 的执行

Source from the content-addressed store, hash-verified

243// CoordinatorActor 工作流协调器 Actor
244// 负责协调多个 Agent 的执行
245type CoordinatorActor struct {
246 engine *ActorEngine
247
248 // 运行中的工作流
249 runningWorkflows map[string]*workflowState
250 mu sync.RWMutex
251}
252
253type workflowState struct {
254 execution *WorkflowExecution

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected