C# Class Org.Apache.Qpid.Messaging.SessionReceiver.EventEngine

EventEngine - wait for messages from the underlying C++ code. When available get them and deliver them via callback to our client through the ISessionReceiver interface. This class consumes the thread that calls the Run() function.
Mostrar archivo Open project: cajus/qpid-cpp-debian Class Usage Examples

Public Methods

Method Description
Close ( ) : void

Function to stop the EventEngine. Private thread will exit within one second.

EventEngine ( Session theSession, ISessionReceiver thecallback ) : System
Open ( ) : void

Function to call Session's nextReceiver, discover messages, and to deliver messages through the callback.

Method Details

Close() public method

Function to stop the EventEngine. Private thread will exit within one second.
public Close ( ) : void
return void

EventEngine() public method

public EventEngine ( Session theSession, ISessionReceiver thecallback ) : System
theSession Session
thecallback ISessionReceiver
return System

Open() public method

Function to call Session's nextReceiver, discover messages, and to deliver messages through the callback.
public Open ( ) : void
return void