Mercurial > pub > ImplabNet
view Implab/Diagnostics/TraceEvent.cs @ 207:558f34b2fb50 v2
added Safe.DispatchEvent() a legacy equivalent for '?.Invoke()'
added Safe.Dispose(IEnumerable)
added PromiseExtensions.CancellationPoint to add a cancellation point to the chain of promises
added IPromise<T> PromiseExtensions.Then<T>(this IPromise<T> that, Action<T> success) overloads
added PromiseExtensions.Error() overloads to handle a error or(and) a cancellation
author | cin |
---|---|
date | Wed, 09 Nov 2016 12:03:22 +0300 |
parents | ea485487a424 |
children | cc1baf7c8bd9 |
line wrap: on
line source
using System; namespace Implab.Diagnostics { public class TraceEvent { public string Message { get; private set; } public TraceEventType EventType { get; private set; } /// <summary> /// The logical operation this event belongs to. /// </summary> public LogicalOperation Operation { get; private set; } /// <summary> /// Gets the time offset in milliseconds from the start of the operation, if the operation is not specified the value is zero. /// </summary> public int OperationTime { get; private set; } public TraceEvent(LogicalOperation operation, TraceEventType type, string message) { EventType = type; Message = message; Operation = operation; if (operation != null) OperationTime = operation.Duration; } public override string ToString() { return Message; } public static TraceEvent Create(LogicalOperation operation, TraceEventType type, string format, params object[] args) { return new TraceEvent(operation, type, format == null ? String.Empty : String.Format(format, args)); } } }