Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 218:babe55c34931 v2
Trace logical operations in the correct channel
author | cin |
---|---|
date | Thu, 04 May 2017 02:17:53 +0300 |
parents | 706fccb85524 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ITaskController: IProgressHandler, ICancellable { bool IsCancelled { get; } event EventHandler Cancelled; } }