Mercurial > pub > ImplabNet
view Implab/IResolvable`1.cs @ 259:7d52dc684bbd v3
PollingComponent: implemented correct stopping
author | cin |
---|---|
date | Fri, 13 Apr 2018 03:57:39 +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); } }