view Implab/IPromiseT.cs @ 266:254d1f255d87 v3

Добавлена метка v3.0.10 для набора изменений 74e048cbaac8
author cin
date Mon, 16 Apr 2018 19:45:18 +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);
    }
}