view Implab/IDeferredT.cs @ 220:42814145d472 v2

.csproj changes
author cin
date Tue, 20 Jun 2017 19:45:52 +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);
    }
}