view Implab/Promise.cs @ 163:419aa51b04fd ref20160224

JSON moved to Formats namespace Working in RegularDFA
author cin
date Wed, 24 Feb 2016 20:12:52 +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);
        }
    }
}