ALE.EventLoop.Start C# (CSharp) Method

Start() public static method

public static Start ( ) : void
return void
        public static void Start()
        {
            IsRunning = true;
            if (Workers.Count == 0)
            {
                AddWorker();
            } else
            {
                Workers.ForEach(x => x.Start());
            }
        }

Same methods

EventLoop::Start ( System.Action startEvent ) : void