view Implab/ITaskController.cs @ 204:cbb0bd8fc0d1 v2

Fixed broken Implab.Diagnostics.Interactive
author cin
date Mon, 24 Oct 2016 11:24:45 +0300
parents 706fccb85524
children
line wrap: on
line source

using System;

namespace Implab {
    public interface ITaskController: IProgressHandler, ICancellable {
        bool IsCancelled {
            get;
        }

        event EventHandler Cancelled;
    }
}