1 Star 0 Fork 0

jack/protoactor-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
supervision.go 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
rogerjohansson 提交于 2020-11-03 10:04 . actor package compiles, tests fail
package actor
import (
"time"
)
// DeciderFunc is a function which is called by a SupervisorStrategy
type DeciderFunc func(reason interface{}) Directive
// SupervisorStrategy is an interface that decides how to handle failing child actors
type SupervisorStrategy interface {
HandleFailure(actorSystem *ActorSystem, supervisor Supervisor, child *PID, rs *RestartStatistics, reason interface{}, message interface{})
}
// Supervisor is an interface that is used by the SupervisorStrategy to manage child actor lifecycle
type Supervisor interface {
Children() []*PID
EscalateFailure(reason interface{}, message interface{})
RestartChildren(pids ...*PID)
StopChildren(pids ...*PID)
ResumeChildren(pids ...*PID)
}
func logFailure(actorSystem *ActorSystem, child *PID, reason interface{}, directive Directive) {
actorSystem.EventStream.Publish(&SupervisorEvent{
Child: child,
Reason: reason,
Directive: directive,
})
}
// DefaultDecider is a decider that will always restart the failing child actor
func DefaultDecider(_ interface{}) Directive {
return RestartDirective
}
var (
defaultSupervisionStrategy = NewOneForOneStrategy(10, 10*time.Second, DefaultDecider)
restartingSupervisionStrategy = NewRestartingStrategy()
)
func DefaultSupervisorStrategy() SupervisorStrategy {
return defaultSupervisionStrategy
}
func RestartingSupervisorStrategy() SupervisorStrategy {
return restartingSupervisionStrategy
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wujianhai/protoactor-go.git
git@gitee.com:wujianhai/protoactor-go.git
wujianhai
protoactor-go
protoactor-go
99a34e4ec9eb

搜索帮助