Mercurial > pub > ImplabNet
view Implab/IPromiseT.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 IPromise<out T> : IPromise { void Then(IResolvable<T> next); new T Join(); new T Join(int timeout); } }