Mercurial > pub > ImplabNet
diff Implab/SyncContextPromise.cs @ 101:279e226dffdd v2
code cleanup
added EnsureDispatched extension
author | cin |
---|---|
date | Thu, 06 Nov 2014 20:03:19 +0300 |
parents | d67b95eddaf4 |
children | d4e38929ce36 |
line wrap: on
line diff
--- a/Implab/SyncContextPromise.cs Wed Nov 05 16:39:56 2014 +0300 +++ b/Implab/SyncContextPromise.cs Thu Nov 06 20:03:19 2014 +0300 @@ -9,8 +9,8 @@ m_context = context; } - public SyncContextPromise(SynchronizationContext context, IPromise parent, bool cancellable) - : base(parent, cancellable) { + public SyncContextPromise(SynchronizationContext context, IPromise parent) + : base(parent) { Safe.ArgumentNotNull(context, "context"); m_context = context; }