Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 237:f2150c16b476 v2
missing files
author | cin |
---|---|
date | Wed, 22 Nov 2017 16:54:58 +0300 |
parents | 706fccb85524 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ITaskController: IProgressHandler, ICancellable { bool IsCancelled { get; } event EventHandler Cancelled; } }