view Implab/ICancellable.cs @ 178:d5c5db0335ee ref20160224

working on JSON parser
author cin
date Wed, 23 Mar 2016 19:51:45 +0300
parents 0fa293bb1351
children
line wrap: on
line source

using System;

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