##// 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:

r114:3fbc6eb93eb1 v2
r196:40d7fed4a09e default
Show More
PromiseEventType.cs
21 lines | 487 B | text/x-csharp | CSharpLexer
/ Implab / PromiseEventType.cs
cin
renamed Promise.Last -> Promise.On...
r104 using System;
namespace Implab {
[Flags]
public enum PromiseEventType {
Success = 1,
Error = 2,
Cancelled = 4,
/// <summary>
/// Завершено успешно, либо возникла ошибка,
/// </summary>
All = 7,
/// <summary>
/// Заврешено успешно, либо возникла ошибка.
/// </summary>
cin
minor changes
r114 Complete = 3,
ErrorOrCancel = 6
cin
renamed Promise.Last -> Promise.On...
r104 }
}