annotate Implab/Diagnostics/IEventTextFormatter.cs @ 97:b11c7e9d93bc v2

added enumerable interface to MTQueue
author cin
date Fri, 31 Oct 2014 17:34:54 +0300
parents 4c0e5ef99986
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
92
4c0e5ef99986 rewritten tracing
cin
parents: 40
diff changeset
1 namespace Implab.Diagnostics {
40
fe33f4e02ad5 improved tracing
cin
parents:
diff changeset
2 public interface IEventTextFormatter<in TEvent> {
92
4c0e5ef99986 rewritten tracing
cin
parents: 40
diff changeset
3 EventText Format(LogEventArgs args, TEvent data);
40
fe33f4e02ad5 improved tracing
cin
parents:
diff changeset
4 }
fe33f4e02ad5 improved tracing
cin
parents:
diff changeset
5 }