CSPspEmu.Core.Threading.Synchronization.PspResetEvent.Set C# (CSharp) Method

Set() private method

private Set ( ) : void
return void
        public void Set()
        {
            Value = true;
            if (Actions.Count > 0) Reset();
            while (Actions.Count > 0)
            {
                var Action = Actions.Dequeue();
                Action();
            }
            if (AutoReset) Reset();
        }