Akka.Actor.ActorCell.FinishCreate C# (CSharp) Method

FinishCreate() private method

private FinishCreate ( ) : void
return void
        private void FinishCreate()
        {
            try
            {
                ResumeNonRecursive();
            }
            finally
            {
                ClearFailed();
            }
            try
            {
                Create(failure: null);
            }
            catch (Exception e)
            {
                HandleNonFatalOrInterruptedException(() => HandleInvokeFailure(e));
            }
        }