コード例 #1
0
        internal static Actor Create(ActorPool owner, string key, out ActorHandle actorHandle)
        {
            var actor = new Actor(owner, key);

            actorHandle = new ActorHandle(actor);

            return(actor);
        }
コード例 #2
0
 private Actor(ActorPool owner, string key)
 {
     _owner = owner;
     Key    = key;
 }