view Implab/IDeferredT.cs @ 190:1c2a16d071a7 v2

Слияние с ref20160224
author cin
date Fri, 22 Apr 2016 13:08:08 +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);
    }
}