Mercurial > pub > ImplabNet
view Implab/PromiseHandler.cs @ 254:12c00235b105 v3
Добавлена метка v3.0.1-beta для набора изменений 34df34841225
author | cin |
---|---|
date | Mon, 12 Feb 2018 17:03:49 +0300 |
parents | d82909310094 |
children |
line wrap: on
line source
using System; using System.Diagnostics; namespace Implab { class PromiseHandler { public static Action<T, Deferred> Create<T>(Action<T> handler) { Debug.Assert(handler != null); return (v, next) => { try { handler(v); next.Resolve(); } catch (Exception err) { next.Reject(err); } }; } public static Action<T, Deferred> Create<T>(Func<T, IPromise> handler) { Debug.Assert(handler != null); return (v, next) => { try { next.Resolve(handler(v)); } catch (Exception err) { next.Reject(err); } }; } public static Action<T, Deferred<T2>> Create<T, T2>(Func<T, T2> handler) { Debug.Assert(handler != null); return (v, next) => { try { next.Resolve(handler(v)); } catch (Exception err) { next.Reject(err); } }; } public static Action<T, Deferred<T2>> Create<T, T2>(Func<T, IPromise<T2>> handler) { Debug.Assert(handler != null); return (v, next) => { try { next.Resolve(handler(v)); } catch (Exception err) { next.Reject(err); } }; } public static Action<Deferred> Create(Action handler) { Debug.Assert(handler != null); return (next) => { try { handler(); next.Resolve(); } catch (Exception err) { next.Reject(err); } }; } public static Action<Deferred> Create(Func<IPromise> handler) { Debug.Assert(handler != null); return (next) => { try { next.Resolve(handler()); } catch (Exception err) { next.Reject(err); } }; } public static Action<Deferred<T2>> Create<T2>(Func<T2> handler) { Debug.Assert(handler != null); return (next) => { try { next.Resolve(handler()); } catch (Exception err) { next.Reject(err); } }; } public static Action<Deferred<T2>> Create<T2>(Func<IPromise<T2>> handler) { Debug.Assert(handler != null); return (next) => { try { next.Resolve(handler()); } catch (Exception err) { next.Reject(err); } }; } } }