PanicActor 会 panic 的 Actor
| 80 | |
| 81 | // PanicActor 会 panic 的 Actor |
| 82 | type PanicActor struct { |
| 83 | panicCount int |
| 84 | } |
| 85 | |
| 86 | func (a *PanicActor) Receive(ctx *Context, msg Message) { |
| 87 | switch msg.(type) { |
nothing calls this directly
no outgoing calls
no test coverage detected