##// END OF EJS Templates
fixed Resove method bug when calling it on already cancelled promise
fixed Resove method bug when calling it on already cancelled promise

File last commit:

r92:4c0e5ef99986 v2
r130:671f60cd0250 v2
Show More
LogEventArgsT.cs
13 lines | 360 B | text/x-csharp | CSharpLexer
namespace Implab.Diagnostics {
public class LogEventArgs<TEvent> : LogEventArgs {
public TEvent Value {
get;
private set;
}
public LogEventArgs(TEvent value, int threadId, LogicalOperation operation, int timeOffset) : base(threadId, operation, timeOffset) {
Value = value;
}
}
}