view Implab/ICancellable.cs @ 141:0fa293bb1351 v2

fixed JSON writer
author cin
date Tue, 24 Feb 2015 00:54:22 +0300
parents f75cfa58e3d4
children
line wrap: on
line source

using System;

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