view Implab.Fx/ControlBoundPromise.cs @ 138:f75cfa58e3d4 v2

added ICancellable.Cancel(Exception) to allow specify the reason of cancellation
author cin
date Tue, 17 Feb 2015 18:16:26 +0300
parents 2573b562e328
children 706fccb85524
line wrap: on
line source

using System.Windows.Forms;
using System;


namespace Implab.Fx {
    public class ControlBoundPromise<T> : Promise<T> {
        readonly Control m_target;

        public ControlBoundPromise(Control target) {
            Safe.ArgumentNotNull(target, "target");

            m_target = target;
        }

        protected override void SignalSuccess(IDeferred<T> handler) {
            if (m_target.InvokeRequired)
                m_target.BeginInvoke(new Action<IDeferred<T>>(base.SignalSuccess), handler);
            else
                base.SignalSuccess(handler);
        }

        protected override void SignalCancelled(IDeferred<T> handler, Exception reason) {
            if (m_target.InvokeRequired)
                m_target.BeginInvoke(new Action<IDeferred<T>,Exception>(base.SignalCancelled), handler, reason);
            else
                base.SignalCancelled(handler, reason);
        }

        protected override void SignalError(IDeferred<T> handler, Exception error) {
            if (m_target.InvokeRequired)
                m_target.BeginInvoke(new Action<IDeferred<T>,Exception>(base.SignalError), handler, error);
            else
                base.SignalError(handler, error);
        }

    }
}