Mercurial > pub > ImplabNet
view Implab/SyncContextPromise.cs @ 104:5f10d54b45df v2
renamed Promise.Last -> Promise.On
Promise.On doesn't changes Promise.IsExclusive property
author | cin |
---|---|
date | Sun, 09 Nov 2014 23:03:45 +0300 |
parents | 279e226dffdd |
children | d4e38929ce36 |
line wrap: on
line source
using System.Threading; namespace Implab { public class SyncContextPromise<T> : Promise<T> { readonly SynchronizationContext m_context; public SyncContextPromise(SynchronizationContext context) { Safe.ArgumentNotNull(context, "context"); m_context = context; } public SyncContextPromise(SynchronizationContext context, IPromise parent) : base(parent) { Safe.ArgumentNotNull(context, "context"); m_context = context; } protected override void InvokeHandler(HandlerDescriptor handler) { m_context.Post(x => base.InvokeHandler(handler),null); } } }