Mercurial > pub > ImplabNet
view Implab/IResolvable`1.cs @ 250:9f63dade3a40 v3
Working on runnable component
| author | cin |
|---|---|
| date | Thu, 01 Feb 2018 02:43:35 +0300 |
| parents | fb70574741a1 |
| children |
line wrap: on
line source
using System; namespace Implab { public interface IResolvable<in T> { void Resolve(T value); void Reject(Exception reason); } }
