view Implab/SyncContextPromise.cs @ 131:b5c2d609d71b v2

minor changes
author cin
date Sat, 07 Feb 2015 11:06:42 +0300
parents 2573b562e328
children f75cfa58e3d4
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;
        }

        protected override void SignalSuccess(IDeferred<T> handler) {
            m_context.Post(x => base.SignalSuccess(handler), null);
        }

        protected override void SignalError(IDeferred<T> handler, System.Exception error) {
            m_context.Post(x => base.SignalError(handler, error), null);
        }

        protected override void SignalCancelled(IDeferred<T> handler) {
            m_context.Post(x => base.SignalCancelled(handler), null);
        }
    }
}