コード例 #1
0
 public ActorPrototype(Type actor)
 {
     gc         = new GC(actor);
     reentrant  = new Reentrant(actor);
     dispatcher = new Dispatcher(actor);
 }
コード例 #2
0
ファイル: ActorPrototype.cs プロジェクト: supwar/Orleankka
 protected ActorPrototype(Type actor)
 {
     gc = new GC(actor);
     reentrant = new Reentrant(actor);
     dispatcher = new Dispatcher(actor);
 }