コード例 #1
0
 /// <summary>
 /// When overridden in a derived class will commit the specified logEvent
 /// to the underlying storage for the current Logger implementation.
 /// </summary>
 /// <param name="logEvent"></param>
 public abstract void CommitLogEvent(LogEvent logEvent);
コード例 #2
0
 protected virtual void QueueLogEvent(LogEvent logEvent)
 {
     _logEventQueue.Enqueue(logEvent);
     _waitForEnqueueLogEvent.Set();
 }