Mercurial > pub > ImplabNet
view Implab/ITaskController.cs @ 214:9c32ef39b851 v2
Added the time delta column to the interactive trace listener
author | cin |
---|---|
date | Fri, 14 Apr 2017 15:57:23 +0300 |
parents | 706fccb85524 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ITaskController: IProgressHandler, ICancellable { bool IsCancelled { get; } event EventHandler Cancelled; } }