Amib.Threading.Internal.WorkItemsGroup.Start C# (CSharp) Method

Start() public method

Start the Work Items Group if it was started suspended
public Start ( ) : void
return void
        public override void Start()
        {
            // If the Work Items Group already started then quit
            if (!_isSuspended)
            {
                return;
            }
            _isSuspended = false;

            EnqueueToSTPNextNWorkItem(Math.Min(_workItemsQueue.Count, _concurrency));
        }