Mercurial > pub > ImplabNet
view Implab/IDeferredT.cs @ 238:bdfdba6b645b v2
fixed unpredictable Safe.Dispose behaviour
| author | cin |
|---|---|
| date | Fri, 01 Dec 2017 01:28:56 +0300 |
| parents | 706fccb85524 |
| children | fa6cbf4d8841 |
line wrap: on
line source
using System; namespace Implab { public interface IDeferred<in T> : ICancellationToken { void Resolve(T value); void Reject(Exception error); } }
