view Implab/IPromiseT.cs @ 250:9f63dade3a40 v3

Working on runnable component
author cin
date Thu, 01 Feb 2018 02:43:35 +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);
    }
}