view Implab/ICancellable.cs @ 148:e6d4b41f0101 v2

fixed timeout handling in promises
author cin
date Wed, 15 Apr 2015 07:30:20 +0300
parents 0fa293bb1351
children
line wrap: on
line source

using System;

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