view Implab/Components/IRunnable.cs @ 189:b60643b47078 ref20160224

Закрыть ветку ref20160224
author cin
date Fri, 22 Apr 2016 13:07:41 +0300 (2016-04-22)
parents 240aa6994018
children 4d9830a9bbb8
line wrap: on
line source
using System;

namespace Implab.Components {
    public interface IRunnable {
        IPromise Start();

        IPromise Stop();

        ExecutionState State { get; }

        Exception LastError { get; }
    }
}