view Implab/ICancellable.cs @ 139:041b77711262 v2

fixed blocking queue
author cin
date Wed, 18 Feb 2015 18:02:02 +0300
parents f75cfa58e3d4
children 0fa293bb1351
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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