internal static Actor Create(ActorPool owner, string key, out ActorHandle actorHandle) { var actor = new Actor(owner, key); actorHandle = new ActorHandle(actor); return(actor); }
private Actor(ActorPool owner, string key) { _owner = owner; Key = key; }