view Implab/SyncContextPromise.cs @ 134:04d4c92d0f28 v2

Improved logging
author cin
date Wed, 11 Feb 2015 02:12:15 +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);
        }
    }
}