view Implab/ICancellable.cs @ 239:eedf4d834e67 v2

fix
author cin
date Wed, 13 Dec 2017 19:54:45 +0300
parents 0fa293bb1351
children
line wrap: on
line source

using System;

namespace Implab {
    public interface ICancellable {
        void Cancel();
        void Cancel(Exception reason);
    }
}