annotate Implab/Diagnostics/IEventTextFormatter.cs @ 127:d86da8d2d4c3 v2

fixed AsyncQueue iterator
author cin
date Tue, 27 Jan 2015 18:18:29 +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 }