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

r194:d45bdf510514 v2
r196:40d7fed4a09e default
Show More
LogEventArgsT.cs
13 lines | 392 B | text/x-csharp | CSharpLexer
cin
rewritten tracing
r92 namespace Implab.Diagnostics {
public class LogEventArgs<TEvent> : LogEventArgs {
public TEvent Value {
get;
private set;
}
cin
Improved logging
r134 public LogEventArgs(TEvent value,string channelName, int threadId, LogicalOperation operation, int timeOffset) : base(channelName, threadId, operation, timeOffset) {
cin
rewritten tracing
r92 Value = value;
}
}
}