view Implab/IPromiseT.cs @ 252:6f4630d0bcd9 v3

removed absolete Diagnostics classes
author cin
date Mon, 12 Feb 2018 07:24:31 +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);
    }
}