-
-
Notifications
You must be signed in to change notification settings - Fork 535
/
Copy pathpassivation.go
69 lines (59 loc) · 1.38 KB
/
passivation.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package plugin
import (
"log"
"sync/atomic"
"time"
"github.com/asynkron/protoactor-go/actor"
)
type PassivationAware interface {
Init(*actor.ActorSystem, *actor.PID, time.Duration)
Reset(time.Duration)
Cancel()
}
type PassivationHolder struct {
timer *time.Timer
done int32
}
func (state *PassivationHolder) Reset(duration time.Duration) {
if state.timer == nil {
log.Fatalf("Cannot reset passivation of a non-started actor")
}
if atomic.LoadInt32(&state.done) == 0 {
state.timer.Reset(duration)
}
}
func (state *PassivationHolder) Init(actorSystem *actor.ActorSystem, pid *actor.PID, duration time.Duration) {
state.timer = time.NewTimer(duration)
state.done = 0
go func() {
select {
case <-state.timer.C:
actorSystem.Root.Stop(pid)
atomic.StoreInt32(&state.done, 1)
break
}
}()
}
func (state *PassivationHolder) Cancel() {
if state.timer != nil {
state.timer.Stop()
}
}
type PassivationPlugin struct {
Duration time.Duration
}
func (pp *PassivationPlugin) OnStart(ctx actor.ReceiverContext) {
if a, ok := ctx.Actor().(PassivationAware); ok {
a.Init(ctx.ActorSystem(), ctx.Self(), pp.Duration)
}
}
func (pp *PassivationPlugin) OnOtherMessage(ctx actor.ReceiverContext, env *actor.MessageEnvelope) {
if p, ok := ctx.Actor().(PassivationAware); ok {
switch env.Message.(type) {
case *actor.Stopped:
p.Cancel()
default:
p.Reset(pp.Duration)
}
}
}