Mercurial > pub > ImplabNet
view Implab/IResolvable`1.cs @ 251:7c7e9ad6fe4a v3
Prerelease version of RunnableComponent
Added draft messaging interfaces
Added more more helpers to Xml/SerializationHelpers
author | cin |
---|---|
date | Sun, 11 Feb 2018 00:49:51 +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); } }