view Implab/IDeferredT.cs @ 126:f7b2b8bfbb8c v2

minor changes
author cin
date Mon, 26 Jan 2015 02:12: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);
    }
}