##// END OF EJS Templates
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler...
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

File last commit:

r134:04d4c92d0f28 v2
r187:dd4a3590f9c6 ref20160224
Show More
TextFileListener.cs
46 lines | 1.4 KiB | text/x-csharp | CSharpLexer
cin
improved tracing...
r40 using System;
using System.IO;
using System.Text;
namespace Implab.Diagnostics {
cin
Improved logging
r134 public class TextFileListener: ListenerBase {
cin
improved tracing...
r40 readonly TextWriter m_textWriter;
cin
Improved logging
r134 public TextFileListener(string fileName) {
cin
improved tracing...
r40 m_textWriter = File.CreateText(fileName);
m_textWriter.WriteLine("LOG {0}", DateTime.Now);
}
cin
Improved logging
r134 #region implemented abstract members of ListenerBase
public override void Write(LogEventArgs args, object entry) {
cin
improved tracing...
r40 var msg = new StringBuilder();
cin
Improved logging
r134 for (int i = 0; i < args.Operation.Level; i++)
cin
improved tracing...
r40 msg.Append(" ");
cin
Improved logging
r134 msg.AppendFormat("[{0}]:{1}: {2}", args.ThreadId, args.ChannelName, entry);
cin
improved tracing...
r40
lock (m_textWriter) {
if (!IsDisposed) {
cin
refactoring, interactive tarce log almost complete
r47 // тут гарантировано еще не освобожден m_textWriter
cin
rewritten tracing
r92 m_textWriter.WriteLine(msg);
cin
improved tracing...
r40 m_textWriter.Flush();
}
}
}
cin
Improved logging
r134 #endregion
cin
improved tracing...
r40 protected override void Dispose(bool disposing) {
base.Dispose(disposing);
if (disposing) {
cin
refactoring, interactive tarce log almost complete
r47 // IsDisposed = true
cin
improved tracing...
r40 lock (m_textWriter) {
Safe.Dispose(m_textWriter);
}
}
}
}
}