Mercurial > pub > ImplabNet
view Implab/Diagnostics/ILogWriter.cs @ 137:238e15580926 v2
added the blocking queue
author | cin |
---|---|
date | Mon, 16 Feb 2015 17:48:39 +0300 |
parents | 04d4c92d0f28 |
children |
line wrap: on
line source
using System; namespace Implab.Diagnostics { public interface ILogWriter<in TEvent> { void Write(LogEventArgs args, TEvent entry); } }