ACE_QoS
6.2.5
|
This class is the Decorator Pattern Base class for decorating ACE_Event_Handler. More...
#include <QoS_Decorator.h>
Public Member Functions | |
ACE_QoS_Decorator_Base (void) | |
Constructor. More... | |
ACE_QoS_Decorator_Base (ACE_Event_Handler *event_handler) | |
Constructor. More... | |
~ACE_QoS_Decorator_Base (void) | |
Destructor. More... | |
virtual ACE_HANDLE | get_handle (void) const |
Forwards the request to its event_handler_ component. More... | |
virtual int | handle_input (ACE_HANDLE fd) |
Forwards the request to its event_handler_ component. More... | |
virtual int | handle_qos (ACE_HANDLE fd) |
Forwards the request to its event_handler_ component. More... | |
Private Attributes | |
ACE_Event_Handler * | event_handler_ |
The event handler that is decorated by this class. More... | |
This class is the Decorator Pattern Base class for decorating ACE_Event_Handler.
It simply forwards the requests for get_handle (), handle_input () and handle_qos () to its event_handler_ component. Concrete decorators for ACE_Event_Handler will use this class to access the basic event handler functionality and decorate that by their own implementation.
ACE_QoS_Decorator_Base::ACE_QoS_Decorator_Base | ( | void | ) |
Constructor.
ACE_QoS_Decorator_Base::ACE_QoS_Decorator_Base | ( | ACE_Event_Handler * | event_handler | ) |
Constructor.
ACE_QoS_Decorator_Base::~ACE_QoS_Decorator_Base | ( | void | ) |
Destructor.
|
virtual |
Forwards the request to its event_handler_ component.
Reimplemented in ACE_QoS_Decorator.
|
virtual |
Forwards the request to its event_handler_ component.
Reimplemented in ACE_QoS_Decorator.
|
virtual |
Forwards the request to its event_handler_ component.
Reimplemented in ACE_QoS_Decorator.
|
private |
The event handler that is decorated by this class.