view Implab/IDeferredT.cs @ 146:e03ccec4a08d v2

minor changes
author cin
date Mon, 09 Mar 2015 17:21:20 +0300
parents 706fccb85524
children fa6cbf4d8841
line wrap: on
line source

using System;

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

        void Reject(Exception error);
    }
}