##// END OF EJS Templates
minor changes
minor changes

File last commit:

r106:d4e38929ce36 v2
r114:3fbc6eb93eb1 v2
Show More
SyncContextPromise.cs
22 lines | 687 B | text/x-csharp | CSharpLexer
/ Implab / SyncContextPromise.cs
using System.Threading;
namespace Implab {
public class SyncContextPromise<T> : Promise<T> {
readonly SynchronizationContext m_context;
public SyncContextPromise(SynchronizationContext context) {
Safe.ArgumentNotNull(context, "context");
m_context = context;
}
public SyncContextPromise(SynchronizationContext context, IPromise parent)
: base(parent) {
Safe.ArgumentNotNull(context, "context");
m_context = context;
}
protected override void InvokeHandler(AbstractHandler handler) {
m_context.Post(x => base.InvokeHandler(handler),null);
}
}
}