Mercurial > pub > ImplabNet
diff Implab/ICancellable.cs @ 192:f1da3afc3521 release v2.1
Слияние с v2
author | cin |
---|---|
date | Fri, 22 Apr 2016 13:10:34 +0300 |
parents | 0fa293bb1351 |
children |
line wrap: on
line diff
--- a/Implab/ICancellable.cs Wed Sep 03 18:34:02 2014 +0400 +++ b/Implab/ICancellable.cs Fri Apr 22 13:10:34 2016 +0300 @@ -1,10 +1,8 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; namespace Implab { public interface ICancellable { - bool Cancel(); + void Cancel(); + void Cancel(Exception reason); } }