コード例 #1
0
ファイル: Program.cs プロジェクト: wushian/Stacks
 public WaitForStarts(CountdownEvent countdown)
 {
     _countdown = countdown;
     context = new ActorContext();
 }
コード例 #2
0
ファイル: Actor.cs プロジェクト: waqashaneef/Stacks
 public Actor(string name, IExecutor executor)
 {
     this.name    = name;
     this.context = new ActorContext(name, executor);
 }
コード例 #3
0
ファイル: Actor.cs プロジェクト: Rush/Stacks
 public Actor(string name, IExecutor executor)
 {
     this.name = name;
     this.context = new ActorContext(name, executor);
 }