Mercurial > pub > ImplabNet
view Implab/IPromiseT.cs @ 278:6691aff01de1 v3
Implab: added XmlDefaultSeializer (SerializersPool is now obsolete)
Implab.ServiceHost: rewritten TypeReference (added support for nested types), stable API
author | cin |
---|---|
date | Thu, 03 May 2018 09:59:44 +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); } }