##// END OF EJS Templates
added promise timeout helper
added promise timeout helper

File last commit:

r92:4c0e5ef99986 v2
r110:1a8426e6e895 v2
Show More
LogEventArgs.cs
24 lines | 585 B | text/x-csharp | CSharpLexer
cin
rewritten tracing
r92 using System;
namespace Implab.Diagnostics {
public class LogEventArgs : EventArgs {
public int ThreadId {
get;
private set;
}
public LogicalOperation Operation {
get;
private set;
}
public int OperationTimeOffset {
get;
private set;
}
public LogEventArgs(int threadId, LogicalOperation operation, int timeOffset) {
ThreadId = threadId;
Operation = operation;
OperationTimeOffset = timeOffset;
}
}
}