view Implab/IPromise.cs @ 33:b255e4aeef17

removed the reference to the parent from the promise object this allows resolved promises to release parents and results they are holding. Added complete set of operations to IPromiseBase interface Subscribing to the cancellation event of the promise should not affect it's IsExclusive property More tests.
author cin
date Thu, 10 Apr 2014 02:39:29 +0400
parents f0bf98e4d22c
children 790e8a997d30
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Implab
{
    public interface IPromise<T>: IPromiseBase
    {

        new T Join();
        new T Join(int timeout);

        IPromise<T> Then(ResultHandler<T> success, ErrorHandler error);
        IPromise<T> Then(ResultHandler<T> success, ErrorHandler<T> error);
        IPromise<T> Then(ResultHandler<T> success);
        new IPromise<T> Error(ErrorHandler error);
        IPromise<T> Error(ErrorHandler<T> error);

        IPromise<T2> Map<T2>(ResultMapper<T,T2> mapper, ErrorHandler error);
        IPromise<T2> Map<T2>(ResultMapper<T, T2> mapper);

        IPromise<T2> Chain<T2>(ChainedOperation<T, T2> chained, ErrorHandler error);
        IPromise<T2> Chain<T2>(ChainedOperation<T, T2> chained);

        new IPromise<T> Cancelled(Action handler);
        new IPromise<T> Finally(Action handler);
        new IPromise<T> Anyway(Action handler);

    }
}