Mercurial > pub > ImplabNet
view Implab.Fx/PromiseHelpers.cs @ 98:4c945d94b9ab v2
fix MTQueue syntax error
author | cin |
---|---|
date | Tue, 04 Nov 2014 09:43:44 +0300 |
parents | c761fc982e1d |
children | b4c4d65b7def |
line wrap: on
line source
using System; using System.Windows.Forms; using System.Threading; namespace Implab.Fx { public static class PromiseHelpers { /// <summary> /// Перенаправляет обработку обещания в поток указанного элемента управления. /// </summary> /// <typeparam name="T">Тип результата обещания</typeparam> /// <param name="that">Исходное обещание</param> /// <param name="ctl">Элемент управления</param> /// <returns>Новое обещание, обработчики которого будут выполнены в потоке элемента управления.</returns> /// <exception cref="ArgumentNullException">Параметр не может быть <c>null</c>.</exception> /// <example> /// client /// .Get("description.txt") // returns a promise /// .DispatchToControl(m_ctl) // handle the promise in the thread of the control /// .Then( /// description => m_ctl.Text = description // now it's safe /// ) /// </example> public static IPromise<T> DispatchToControl<T>(this IPromise<T> that, Control ctl) { Safe.ArgumentNotNull(that, "that"); Safe.ArgumentNotNull(ctl, "ctl"); var directed = new ControlBoundPromise<T>(ctl,that,true); that.Last( directed.Resolve, directed.Reject, directed.Cancel ); return directed; } } }