C# Class Apache.NMS.ActiveMQ.Threads.ThreadPoolExecutor

This class provides a wrapper around the ThreadPool mechanism in .NET to allow for serial execution of jobs in the ThreadPool and provide a means of shutting down the execution of jobs in a deterministic way.
Datei anzeigen Open project: ThorTech/apache-nms Class Usage Examples

Public Methods

Method Description
QueueUserWorkItem ( WaitCallback worker ) : void
QueueUserWorkItem ( WaitCallback worker, object arg ) : void
Shutdown ( ) : void

Private Methods

Method Description
QueueProcessor ( object unused ) : void

Method Details

QueueUserWorkItem() public method

public QueueUserWorkItem ( WaitCallback worker ) : void
worker WaitCallback
return void

QueueUserWorkItem() public method

public QueueUserWorkItem ( WaitCallback worker, object arg ) : void
worker WaitCallback
arg object
return void

Shutdown() public method

public Shutdown ( ) : void
return void