view Implab/ITaskController.cs @ 217:6efb77590b15 v2

More verbose output with TextFileListener
author cin
date Tue, 02 May 2017 17:33:04 +0300
parents 706fccb85524
children
line wrap: on
line source

using System;

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

        event EventHandler Cancelled;
    }
}