##// END OF EJS Templates
Bound promise to CancellationToken...
Bound promise to CancellationToken Added new states to ExecutionSate enum. Added Safe.Guard() method to handle cleanup of the result of the promise

File last commit:

r194:d45bdf510514 v2
r209:a867536c68fc v2
Show More
LogEventArgs.cs
29 lines | 716 B | text/x-csharp | CSharpLexer
cin
rewritten tracing
r92 using System;
namespace Implab.Diagnostics {
public class LogEventArgs : EventArgs {
cin
working on diagnostics
r194 public object Channel {
cin
Improved logging
r134 get;
private set;
}
cin
rewritten tracing
r92 public int ThreadId {
get;
private set;
}
public LogicalOperation Operation {
get;
private set;
}
public int OperationTimeOffset {
get;
private set;
}
cin
working on diagnostics
r194 public LogEventArgs(object channel, int threadId, LogicalOperation operation, int timeOffset) {
Channel = channel;
cin
rewritten tracing
r92 ThreadId = threadId;
Operation = operation;
OperationTimeOffset = timeOffset;
}
}
}