C# Class paramore.brighter.commandprocessor.OutputChannel

Class OutputChannel. An IAmAChannel for reading messages from a Task Queue and acknowledging receipt of those messages
Inheritance: IAmAnOutputChannel
Datei anzeigen Open project: JustGiving/Paramore

Public Methods

Method Description
Dispose ( ) : void

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

OutputChannel ( IAmAMessageProducer messageProducer ) : System

Initializes a new instance of the OutputChannel class.

Send ( Message message, int delayMilliseconds ) : void

Sends the specified message.

Private Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Dispose() public method

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

OutputChannel() public method

Initializes a new instance of the OutputChannel class.
public OutputChannel ( IAmAMessageProducer messageProducer ) : System
messageProducer IAmAMessageProducer
return System

Send() public method

Sends the specified message.
public Send ( Message message, int delayMilliseconds ) : void
message Message The message.
delayMilliseconds int Number of milliseconds to delay delivery of the message.
return void