ControlBoundPromise.cs
38 lines
| 1.3 KiB
| text/x-csharp
|
CSharpLexer
/ Implab.Fx / ControlBoundPromise.cs
cin
|
r72 | 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; | ||||
} | ||||
cin
|
r145 | protected override void SignalSuccess(Promise<T>.HandlerDescriptor handler) { | ||
cin
|
r119 | if (m_target.InvokeRequired) | ||
cin
|
r145 | m_target.BeginInvoke(new Action<Promise<T>.HandlerDescriptor>(base.SignalSuccess), handler); | ||
cin
|
r119 | else | ||
base.SignalSuccess(handler); | ||||
cin
|
r72 | } | ||
cin
|
r145 | protected override void SignalCancelled(Promise<T>.HandlerDescriptor handler, Exception reason) { | ||
cin
|
r72 | if (m_target.InvokeRequired) | ||
cin
|
r145 | m_target.BeginInvoke(new Action<Promise<T>.HandlerDescriptor,Exception>(base.SignalCancelled), handler, reason); | ||
cin
|
r72 | else | ||
cin
|
r138 | base.SignalCancelled(handler, reason); | ||
cin
|
r72 | } | ||
cin
|
r119 | |||
cin
|
r145 | protected override void SignalError(Promise<T>.HandlerDescriptor handler, Exception error) { | ||
cin
|
r119 | if (m_target.InvokeRequired) | ||
cin
|
r145 | m_target.BeginInvoke(new Action<Promise<T>.HandlerDescriptor,Exception>(base.SignalError), handler, error); | ||
cin
|
r119 | else | ||
base.SignalError(handler, error); | ||||
} | ||||
cin
|
r72 | } | ||
} | ||||