Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 180:c32688129f14 ref20160224
refactoring complete, JSONParser rewritten
author | cin |
---|---|
date | Thu, 24 Mar 2016 02:30:46 +0300 |
parents | 706fccb85524 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ITaskController: IProgressHandler, ICancellable { bool IsCancelled { get; } event EventHandler Cancelled; } }