##// END OF EJS Templates
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.

File last commit:

r151:ec91a6dfa5b3 v2
r196:40d7fed4a09e default
Show More
PromiseAwaiter.cs
28 lines | 636 B | text/x-csharp | CSharpLexer
cin
Added support for 'await' operator to promises
r151 using System;
using System.Runtime.CompilerServices;
namespace Implab {
public struct PromiseAwaiter : INotifyCompletion {
readonly IPromise m_promise;
public PromiseAwaiter(IPromise promise) {
m_promise = promise;
}
public void OnCompleted (Action continuation) {
if (m_promise != null)
m_promise.On(continuation, PromiseEventType.All);
}
public void GetResult() {
m_promise.Join();
}
public bool IsCompleted {
get {
return m_promise.IsResolved;
}
}
}
}