CCT.NUI.Core.ActionRunner.Run C# (CSharp) Method

Run() private method

private Run ( ) : void
return void
        private void Run()
        {
            while (this.run)
            {
                this.action();
            }
            if (this.afterStopAction != null)
            {
                this.afterStopAction();
            }
        }
    }