##// END OF EJS Templates
refactoring, moving to dotnercore, simplifying promises
refactoring, moving to dotnercore, simplifying promises

File last commit:

r211:3eb3255d8cc5 v2
r240:fa6cbf4d8841 v3
Show More
SyncContextPromiseT.cs
18 lines | 515 B | text/x-csharp | CSharpLexer
/ Implab / SyncContextPromiseT.cs
cin
Code review, added a non generic version of SyncContextPromise
r211 using System.Threading;
using System;
namespace Implab {
public class SyncContextPromise<T> : Promise<T> {
readonly SynchronizationContext m_context;
public SyncContextPromise(SynchronizationContext context) {
Safe.ArgumentNotNull(context, "context");
m_context = context;
}
protected override void SignalHandler(HandlerDescriptor handler, int signal) {
m_context.Post(x => base.SignalHandler(handler, signal), null);
}
}
}