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

File last commit:

r145:706fccb85524 v2
r146:e03ccec4a08d v2
Show More
SyncContextPromise.cs
26 lines | 886 B | text/x-csharp | CSharpLexer
/ Implab / SyncContextPromise.cs
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 SignalSuccess(Promise<T>.HandlerDescriptor handler) {
m_context.Post(x => base.SignalSuccess(handler), null);
}
protected override void SignalError(Promise<T>.HandlerDescriptor handler, Exception error) {
m_context.Post(x => base.SignalError(handler, error), null);
}
protected override void SignalCancelled(Promise<T>.HandlerDescriptor handler, Exception reason) {
m_context.Post(x => base.SignalCancelled(handler, reason), null);
}
}
}