Mercurial > pub > ImplabNet
view Implab/IPromiseT.cs @ 281:e0916ddc9950 v3 tip
code cleanup and refactoring
author | cin |
---|---|
date | Fri, 01 Jun 2018 21:35:24 +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); } }