Example #1
0
 internal ActorDescription(object actor, TaskScheduler taskScheduler, ActorFactorType type)
 {
     ActorProxy    = actor;
     TaskScheduler = taskScheduler;
     Type          = type;
 }
 internal ActorDescription(object actor, TaskScheduler taskScheduler, ActorFactorType type)
 {
     ActorProxy = actor;
     TaskScheduler = taskScheduler;
     Type = type;
 }
 internal ActorDescription(object actor, IDispatcher dispatcher, ActorFactorType type)
 {
     ActorProxy = actor;
     Dispatcher = dispatcher;
     Type       = type;
 }