Mercurial > pub > ImplabNet
view Implab/IDeferredT.cs @ 230:3e26338eb977 v2
slowly cutting off mono specific settings
| author | cin |
|---|---|
| date | Wed, 13 Sep 2017 16:55:13 +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); } }
