##// END OF EJS Templates
Implab.Test moved to xunit...
Implab.Test moved to xunit Complete set of PromiseHelpers (Then, Catch, Finally) Removed obsolete types ICancellable, ICancellationToken

File last commit:

r249:d82909310094 v3
r249:d82909310094 v3
Show More
PromiseActionReaction.cs
91 lines | 3.1 KiB | text/x-csharp | CSharpLexer
/ Implab / PromiseActionReaction.cs
cin
working on promises
r247 using System;
using System.Diagnostics;
namespace Implab {
cin
Implab.Test moved to xunit...
r249 class PromiseActionReaction : IResolvable {
cin
working on promises
r247
readonly Deferred m_next;
cin
Implab.Test moved to xunit...
r249 readonly IDispatcher m_dispatcher;
readonly Action<Deferred> m_fulfilled;
readonly Action<Exception, Deferred> m_rejected;
cin
Added awaiters to promises...
r248 public IPromise Promise {
get { return m_next.Promise; }
}
cin
Implab.Test moved to xunit...
r249 public PromiseActionReaction(Action<Deferred> fulfilled, Action<Exception, Deferred> rejected, Deferred next, IDispatcher dispatcher) {
m_next = next;
m_fulfilled = fulfilled;
m_rejected = rejected;
m_dispatcher = dispatcher;
cin
working on promises
r247 }
cin
Implab.Test moved to xunit...
r249 public void Resolve() {
if (m_fulfilled != null) {
if (m_dispatcher != null)
m_dispatcher.Enqueue(ResolveImpl);
else
ResolveImpl();
} else {
m_next.Resolve();
}
}
cin
working on promises
r247
cin
Implab.Test moved to xunit...
r249 void ResolveImpl() {
m_fulfilled(m_next);
}
public void Reject(Exception error) {
if (m_fulfilled != null) {
if (m_dispatcher != null)
m_dispatcher.Enqueue(RejectImpl, error);
else
RejectImpl(error);
} else {
m_next.Reject(error);
}
cin
working on promises
r247 }
cin
Implab.Test moved to xunit...
r249 void RejectImpl(Exception error) {
m_rejected(error, m_next);
}
cin
working on promises
r247
cin
Implab.Test moved to xunit...
r249 public static PromiseActionReaction Create(Action fulfilled, Action<Exception> rejected, IDispatcher dispatcher) {
return new PromiseActionReaction(
fulfilled != null ? PromiseHandler.Create(fulfilled) : null,
rejected != null ? PromiseHandler.Create(rejected) : null,
new Deferred(),
dispatcher
);
cin
working on promises
r247 }
cin
Implab.Test moved to xunit...
r249 public static PromiseActionReaction Create(Func<IPromise> fulfilled, Action<Exception> rejected, IDispatcher dispatcher) {
return new PromiseActionReaction(
fulfilled != null ? PromiseHandler.Create(fulfilled) : null,
rejected != null ? PromiseHandler.Create(rejected) : null,
new Deferred(),
dispatcher
);
cin
Added awaiters to promises...
r248 }
cin
working on promises
r247
cin
Implab.Test moved to xunit...
r249 public static PromiseActionReaction Create(Action fulfilled, Func<Exception, IPromise> rejected, IDispatcher dispatcher) {
return new PromiseActionReaction(
fulfilled != null ? PromiseHandler.Create(fulfilled) : null,
rejected != null ? PromiseHandler.Create(rejected) : null,
new Deferred(),
dispatcher
);
cin
working on promises
r247 }
cin
Implab.Test moved to xunit...
r249 public static PromiseActionReaction Create(Func<IPromise> fulfilled, Func<Exception, IPromise> rejected, IDispatcher dispatcher) {
return new PromiseActionReaction(
fulfilled != null ? PromiseHandler.Create(fulfilled) : null,
rejected != null ? PromiseHandler.Create(rejected) : null,
new Deferred(),
dispatcher
);
cin
working on promises
r247 }
}
}