Mercurial > pub > ImplabNet
view Implab/Diagnostics/LogEventArgs.cs @ 130:671f60cd0250 v2
fixed Resove method bug when calling it on already cancelled promise
| author | cin |
|---|---|
| date | Fri, 30 Jan 2015 17:07:17 +0300 |
| parents | 4c0e5ef99986 |
| children | 04d4c92d0f28 |
line wrap: on
line source
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; } } }
