##// END OF EJS Templates
minor fixes and improvements of AsyncQueue, additional tests
minor fixes and improvements of AsyncQueue, additional tests

File last commit:

r92:4c0e5ef99986 v2
r122:0c8685c8b56b v2
Show More
LogEventArgs.cs
24 lines | 585 B | text/x-csharp | CSharpLexer
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;
}
}
}