view Implab/ITaskController.cs @ 230:3e26338eb977 v2

slowly cutting off mono specific settings
author cin
date Wed, 13 Sep 2017 16:55:13 +0300
parents 706fccb85524
children
line wrap: on
line source

using System;

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

        event EventHandler Cancelled;
    }
}