Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 15:0f982f9b7d4d promises
implemented parallel map and foreach for arrays
rewritten WorkerPool with MTQueue for more efficiency
author | cin |
---|---|
date | Thu, 07 Nov 2013 03:41:32 +0400 |
parents | eb418ba8275b |
children | 9bf5b23650c9 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Implab { public interface ITaskController: IProgressHandler { bool Cancelled { get; } } }