C# 클래스 Akka.Event.BusLogging

A logging adapter implementation publishing log events to the event stream.
상속: LoggingAdapterBase
파일 보기 프로젝트 열기: rogeralsing/akka.net 1 사용 예제들

공개 메소드들

메소드 설명
BusLogging ( LoggingBus bus, string logSource, Type logClass, ILogMessageFormatter logMessageFormatter ) : System

Initializes a new instance of the BusLogging class.

보호된 메소드들

메소드 설명
NotifyDebug ( object message ) : void

Publishes the the debug message onto the LoggingBus.

NotifyError ( Exception cause, object message ) : void

Publishes the error message and exception onto the LoggingBus.

NotifyError ( object message ) : void

Publishes the error message onto the LoggingBus.

NotifyInfo ( object message ) : void

Publishes the the info message onto the LoggingBus.

NotifyWarning ( object message ) : void

Publishes the the warning message onto the LoggingBus.

메소드 상세

BusLogging() 공개 메소드

Initializes a new instance of the BusLogging class.
public BusLogging ( LoggingBus bus, string logSource, Type logClass, ILogMessageFormatter logMessageFormatter ) : System
bus LoggingBus The logging bus instance that messages will be published to.
logSource string The log source.
logClass System.Type The log class.
logMessageFormatter ILogMessageFormatter The log message formatter.
리턴 System

NotifyDebug() 보호된 메소드

Publishes the the debug message onto the LoggingBus.
protected NotifyDebug ( object message ) : void
message object The debug message.
리턴 void

NotifyError() 보호된 메소드

Publishes the error message and exception onto the LoggingBus.
protected NotifyError ( Exception cause, object message ) : void
cause System.Exception The exception that caused this error.
message object The error message.
리턴 void

NotifyError() 보호된 메소드

Publishes the error message onto the LoggingBus.
protected NotifyError ( object message ) : void
message object The error message.
리턴 void

NotifyInfo() 보호된 메소드

Publishes the the info message onto the LoggingBus.
protected NotifyInfo ( object message ) : void
message object The info message.
리턴 void

NotifyWarning() 보호된 메소드

Publishes the the warning message onto the LoggingBus.
protected NotifyWarning ( object message ) : void
message object The warning message.
리턴 void