annotate Implab/Diagnostics/LogEventArgsT.cs @ 128:6241bff0cd64
v2
Added Signal class a lightweight alternative to ManualResetEvent
author |
cin |
date |
Thu, 29 Jan 2015 05:09:31 +0300 |
parents |
4c0e5ef99986 |
children |
04d4c92d0f28 |
rev |
line source |
92
|
1 namespace Implab.Diagnostics {
|
|
2 public class LogEventArgs<TEvent> : LogEventArgs {
|
|
3 public TEvent Value {
|
|
4 get;
|
|
5 private set;
|
|
6 }
|
|
7
|
|
8 public LogEventArgs(TEvent value, int threadId, LogicalOperation operation, int timeOffset) : base(threadId, operation, timeOffset) {
|
|
9 Value = value;
|
|
10 }
|
|
11 }
|
|
12 }
|
|
13
|