Mercurial > pub > ImplabNet
view Implab/FuncChainTaskBase.cs @ 163:419aa51b04fd ref20160224
JSON moved to Formats namespace
Working in RegularDFA
author | cin |
---|---|
date | Wed, 24 Feb 2016 20:12:52 +0300 |
parents | eb793fbbe4ea |
children | dd4a3590f9c6 |
line wrap: on
line source
using System; using System.Threading; namespace Implab { public class FuncChainTaskBase<TResult> : AbstractPromise<TResult> { readonly Func<Exception, IPromise<TResult>> m_error; readonly Func<Exception, IPromise<TResult>> m_cancel; int m_cancelationLock; protected FuncChainTaskBase( Func<Exception, IPromise<TResult>> error, Func<Exception, IPromise<TResult>> cancel, bool autoCancellable) { m_error = error; m_cancel = cancel; if (autoCancellable) CancellationRequested(CancelOperation); } public void Reject(Exception error) { if (LockCancelation()) HandleErrorInternal(error); } public override void CancelOperation(Exception reason) { if (LockCancelation()) { if (m_cancel != null) { try { m_cancel(reason).On(SetResult, HandleErrorInternal, SetCancelled); } catch (Exception err) { HandleErrorInternal(err); } } else { SetCancelled(reason); } } } protected void HandleErrorInternal(Exception error) { if (m_error != null) { try { var operation = m_error(error); operation.On(SetResult, SetError, SetCancelled); CancellationRequested(operation.Cancel); } catch(Exception err) { SetError(err); } } else { SetError(error); } } protected bool LockCancelation() { return 0 == Interlocked.CompareExchange(ref m_cancelationLock, 1, 0); } } }