SupervisorActor 监督者 Actor 用于构建监督树
| 340 | // SupervisorActor 监督者 Actor |
| 341 | // 用于构建监督树 |
| 342 | type SupervisorActor struct { |
| 343 | config *SupervisorConfig |
| 344 | children map[string]*PID |
| 345 | } |
| 346 | |
| 347 | // NewSupervisorActor 创建监督者 Actor |
| 348 | func NewSupervisorActor(config *SupervisorConfig) *SupervisorActor { |
nothing calls this directly
no outgoing calls
no test coverage detected