Exemplo n.º 1
0
 public WaitForStarts(CountdownEvent countdown)
 {
     _countdown = countdown;
     context = new ActorContext();
 }
Exemplo n.º 2
0
 public Actor(string name, IExecutor executor)
 {
     this.name    = name;
     this.context = new ActorContext(name, executor);
 }
Exemplo n.º 3
0
Arquivo: Actor.cs Projeto: Rush/Stacks
 public Actor(string name, IExecutor executor)
 {
     this.name = name;
     this.context = new ActorContext(name, executor);
 }