C# 클래스 DotNetWorkQueue.Queue.BaseQueue

Base queue class
상속: IDisposable, IIsDisposed
파일 보기 프로젝트 열기: blehnen/DotNetWorkQueue

공개 메소드들

메소드 설명
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

보호된 메소드들

메소드 설명
BaseQueue ( ILogFactory log ) : System

Initializes a new instance of the BaseQueue class.

Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources.

LogSystemException ( object sender, WorkerErrorEventArgs e ) : void

Logs the system exception.

LogUserException ( object sender, WorkerErrorEventArgs e ) : void

Logs the user exception.

ThrowIfDisposed ( [ name = "" ) : void

Throws an exception if this instance has been disposed.

메소드 상세

BaseQueue() 보호된 메소드

Initializes a new instance of the BaseQueue class.
protected BaseQueue ( ILogFactory log ) : System
log ILogFactory The log.
리턴 System

Dispose() 공개 메소드

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

Releases unmanaged and - optionally - managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
리턴 void

LogSystemException() 보호된 메소드

Logs the system exception.
protected LogSystemException ( object sender, WorkerErrorEventArgs e ) : void
sender object The sender.
e WorkerErrorEventArgs The instance containing the event data.
리턴 void

LogUserException() 보호된 메소드

Logs the user exception.
protected LogUserException ( object sender, WorkerErrorEventArgs e ) : void
sender object The sender.
e WorkerErrorEventArgs The instance containing the event data.
리턴 void

ThrowIfDisposed() 보호된 메소드

Throws an exception if this instance has been disposed.
protected ThrowIfDisposed ( [ name = "" ) : void
name [ The name.
리턴 void