System.Collections.Concurrent.ConcurrentBag.Add(CancellableTask)

Here are the examples of the csharp api class System.Collections.Concurrent.ConcurrentBag.Add(CancellableTask) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: PerfTap
Source File: TaskPoolManager.cs
public void EnqueTask(CancellableTask task)
		{
			this._tasks.Add(task);
			task.Start();
		}