Esempio n. 1
0
        /// <summary>
        /// Remove the child from our child list, and from the ActorContext.Store
        /// </summary>
        /// <param name="childName"></param>
        private Unit PurgeChild(ProcessId child)
        {
            IProcess temp;

            children.TryRemove(child.Name.Value, out temp);
            return(ActorContext.RemoveFromStore(child));
        }