view Implab/Diagnostics/IEventTextFormatter.cs @ 119:2573b562e328 v2

Promises rewritten, added improved version of AsyncQueue
author cin
date Sun, 11 Jan 2015 19:13:02 +0300
parents 4c0e5ef99986
children
line wrap: on
line source

namespace Implab.Diagnostics {
    public interface IEventTextFormatter<in TEvent> {
        EventText Format(LogEventArgs args, TEvent data);
    }
}