Mercurial > pub > ImplabNet
view Implab/FuncTaskBase.cs @ 148:e6d4b41f0101 v2
fixed timeout handling in promises
author | cin |
---|---|
date | Wed, 15 Apr 2015 07:30:20 +0300 |
parents | 8c0b95069066 |
children | eb793fbbe4ea |
line wrap: on
line source
using System; using System.Threading; namespace Implab { public class FuncTaskBase<TResult> : AbstractPromise<TResult> { readonly Func<Exception, TResult> m_cancel; readonly Func<Exception, TResult> m_error; int m_cancelationLock; protected FuncTaskBase( Func<Exception, TResult> error, Func<Exception, TResult> cancel) { m_error = error; m_cancel = cancel; } public void Reject(Exception error) { Safe.ArgumentNotNull(error, "error"); if (LockCancelation()) HandleErrorInternal(error); } protected void HandleErrorInternal(Exception error) { if (m_error != null) { try { SetResult(m_error(error)); } catch(Exception err) { SetError(err); } } else { SetError(error); } } public override void CancelOperation(Exception reason) { if (LockCancelation()) { if (m_cancel != null) { try { SetResult(m_cancel(reason)); } catch (Exception err) { HandleErrorInternal(err); } } else { SetCancelled(reason); } } } protected bool LockCancelation() { return 0 == Interlocked.CompareExchange(ref m_cancelationLock, 1, 0); } } }