Mercurial > pub > ImplabNet
comparison Implab/ICancellable.cs @ 76:c761fc982e1d v2
Refactoring of the IPromise<T> interface
Added tests
author | cin |
---|---|
date | Wed, 10 Sep 2014 17:53:05 +0400 |
parents | eb418ba8275b |
children | f75cfa58e3d4 |
comparison
equal
deleted
inserted
replaced
75:4439140706d0 | 76:c761fc982e1d |
---|---|
3 using System.Linq; | 3 using System.Linq; |
4 using System.Text; | 4 using System.Text; |
5 | 5 |
6 namespace Implab { | 6 namespace Implab { |
7 public interface ICancellable { | 7 public interface ICancellable { |
8 bool Cancel(); | 8 void Cancel(); |
9 } | 9 } |
10 } | 10 } |