protected override void PostStop()
        {
            _cluster.Unsubscribe(Self);
            _tickTask.Cancel();

            base.PostStop();
        }
Esempio n. 2
0
 /// <summary>
 /// Re-subscribe on restart
 /// </summary>
 protected override void PostStop()
 {
     Cluster.Unsubscribe(Self);
 }
Esempio n. 3
0
 protected override void PostStop()
 {
     //정상적으로 Actor를 정지하면 멤버에서 탈퇴가됩니다.
     Cluster.Unsubscribe(Self);
 }
Esempio n. 4
0
 /// <summary>
 /// TBD
 /// </summary>
 protected override void PostStop()
 {
     _cluster.Unsubscribe(Self);
     base.PostStop();
 }
Esempio n. 5
0
 protected override void PostStop()
 {
     //unsubscribe from all cluster domain events
     _cluster.Unsubscribe(Self);
 }