##// END OF EJS Templates
Added 'Fail' method to RunnableComponent which allows component to move from...
Added 'Fail' method to RunnableComponent which allows component to move from Running to Failed state. Added PollingComponent a timer based runnable component More tests Added FailPromise a thin class to wrap exceptions Fixed error handling in SuccessPromise classes.

File last commit:

r194:d45bdf510514 v2
r203:4d9830a9bbb8 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;
}
}
}