view Implab/Diagnostics/IEventTextFormatter.cs @ 130:671f60cd0250 v2

fixed Resove method bug when calling it on already cancelled promise
author cin
date Fri, 30 Jan 2015 17:07:17 +0300
parents 4c0e5ef99986
children
line wrap: on
line source

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