System.Threading.Tasks.Scheduler.AddWork C# (CSharp) Method

AddWork() public method

public AddWork ( System.Threading.Tasks.Task t ) : void
t System.Threading.Tasks.Task
return void
		public void AddWork (Task t)
		{
			// Add to the shared work pool
			workQueue.TryAdd (t);
			// Wake up some worker if they were asleep
			PulseAll ();
		}