view Implab/IDeferredT.cs @ 135:656815cb7147 v2

Fixed chaining of promises with 'Then' method
author cin
date Fri, 13 Feb 2015 02:08:01 +0300
parents 2573b562e328
children 16f926ee499d
line wrap: on
line source

using System;

namespace Implab {
    public interface IDeferred<T> : ICancellable {
        void Resolve(T value);

        void Reject(Exception error);
    }
}