view Implab/IDeferredT.cs @ 120:f1b897999260 v2

improved asyncpool usability working on batch operations on asyncqueue
author cin
date Mon, 12 Jan 2015 05:19:52 +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);
    }
}