view Implab/PromiseState.cs @ 34:dabf79fde388

fixed race condition in DispatchPool
author cin
date Thu, 10 Apr 2014 04:20:25 +0400
parents 7ea9363fef6c
children
line wrap: on
line source

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

namespace Implab
{
    public enum PromiseState
    {
        Unresolved,
        Resolved,
        Cancelled,
        Rejected
    }
}