diff Implab/Diagnostics/LogEventArgs.cs @ 92:4c0e5ef99986 v2

rewritten tracing
author cin
date Wed, 22 Oct 2014 18:37:56 +0400
parents
children 04d4c92d0f28
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Implab/Diagnostics/LogEventArgs.cs	Wed Oct 22 18:37:56 2014 +0400
@@ -0,0 +1,24 @@
+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;
+        }
+    }
+}
+