view Implab/Promise.cs @ 198:b305c678923a

fixed error handling for chained actions
author koff
date Mon, 10 Oct 2016 03:14:00 +0300
parents 8c0b95069066
children 8200ab154c8a
line wrap: on
line source

using System;
using Implab.Parallels;

namespace Implab {
    public class Promise : AbstractPromise, IDeferred {
        public static readonly Promise SUCCESS;

        static Promise() {
            SUCCESS = new Promise();
            SUCCESS.Resolve();
        }

        public void Resolve() {
            SetResult();
        }

        public void Reject(Exception error) {
            SetError(error);
        }
    }
}