Mercurial > pub > ImplabNet
comparison Implab/ICancellable.cs @ 192:f1da3afc3521 release v2.1
Слияние с v2
| author | cin |
|---|---|
| date | Fri, 22 Apr 2016 13:10:34 +0300 |
| parents | 0fa293bb1351 |
| children |
comparison
equal
deleted
inserted
replaced
| 71:1714fd8678ef | 192:f1da3afc3521 |
|---|---|
| 1 using System; | 1 using System; |
| 2 using System.Collections.Generic; | |
| 3 using System.Linq; | |
| 4 using System.Text; | |
| 5 | 2 |
| 6 namespace Implab { | 3 namespace Implab { |
| 7 public interface ICancellable { | 4 public interface ICancellable { |
| 8 bool Cancel(); | 5 void Cancel(); |
| 6 void Cancel(Exception reason); | |
| 9 } | 7 } |
| 10 } | 8 } |
