Example #1
0
 public WaitForStarts(CountdownEvent countdown)
 {
     _countdown = countdown;
     context = new ActorContext();
 }
Example #2
0
 public Actor(string name, IExecutor executor)
 {
     this.name    = name;
     this.context = new ActorContext(name, executor);
 }
Example #3
0
File: Actor.cs Project: Rush/Stacks
 public Actor(string name, IExecutor executor)
 {
     this.name = name;
     this.context = new ActorContext(name, executor);
 }