view Implab/IDeferredT.cs @ 121:62d2f1e98c4e v2

working version of AsyncQueue and batch operations tests
author cin
date Mon, 12 Jan 2015 18:19:41 +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);
    }
}