annotate Implab/Diagnostics/IEventTextFormatter.cs @ 122:0c8685c8b56b v2

minor fixes and improvements of AsyncQueue, additional tests
author cin
date Mon, 12 Jan 2015 22:20:45 +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 }