Example #1
0
        public virtual int handler4(selfstop msg)
        {
            try
            {
                Context.StopActor(Context.Self);
            }
            catch { }

            return 0;
        }
Example #2
0
 public int h1(selfstop msg)
 {
     Context.StopActor(Context.Self);
     return 0;
 }
Example #3
0
 public override int handler4(selfstop msg)
 {
     Context.StopActor(Context.Self);
     return 0;
 }