コード例 #1
0
ファイル: PredRestartTestActor.cs プロジェクト: lebaon/AEF
        public virtual int handler4(selfstop msg)
        {
            try
            {
                Context.StopActor(Context.Self);
            }
            catch { }

            return 0;
        }
コード例 #2
0
ファイル: ChildPriorityStopActor.cs プロジェクト: lebaon/AEF
 public int h1(selfstop msg)
 {
     Context.StopActor(Context.Self);
     return 0;
 }
コード例 #3
0
ファイル: PredRestartTestActor.cs プロジェクト: lebaon/AEF
 public override int handler4(selfstop msg)
 {
     Context.StopActor(Context.Self);
     return 0;
 }