##// END OF EJS Templates
fixed Promise.Error handler
fixed Promise.Error handler

File last commit:

r104:5f10d54b45df v2
r112:38d6a4db35d7 v2
Show More
PromiseEventType.cs
19 lines | 459 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>
Complete = 3
}
}