C# Class DotNetWorkQueue.Queue.BaseQueue

Base queue class
Inheritance: IDisposable, IIsDisposed
Afficher le fichier Open project: blehnen/DotNetWorkQueue

Méthodes publiques

Méthode Description
Dispose ( ) : void

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

Méthodes protégées

Méthode Description
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.

Method Details

BaseQueue() protected méthode

Initializes a new instance of the BaseQueue class.
protected BaseQueue ( ILogFactory log ) : System
log ILogFactory The log.
Résultat System

Dispose() public méthode

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

Dispose() protected méthode

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.
Résultat void

LogSystemException() protected méthode

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

LogUserException() protected méthode

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

ThrowIfDisposed() protected méthode

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