annotate Implab/Diagnostics/ILogWriter.cs @ 187:dd4a3590f9c6 ref20160224

Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation
author cin
date Tue, 19 Apr 2016 17:35:20 +0300
parents 04d4c92d0f28
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
134
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
1 using System;
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
2
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
3 namespace Implab.Diagnostics {
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
4 public interface ILogWriter<in TEvent> {
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
5 void Write(LogEventArgs args, TEvent entry);
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
6 }
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
7 }
04d4c92d0f28 Improved logging
cin
parents:
diff changeset
8