ACE_QoS
6.3.2
|
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... | |
![]() | |
virtual | ~ACE_Event_Handler (void) |
virtual void | set_handle (ACE_HANDLE) |
virtual int | priority (void) const |
virtual void | priority (int priority) |
virtual int | handle_output (ACE_HANDLE fd=ACE_INVALID_HANDLE) |
virtual int | handle_exception (ACE_HANDLE fd=ACE_INVALID_HANDLE) |
virtual int | handle_timeout (const ACE_Time_Value ¤t_time, const void *act=0) |
virtual int | handle_exit (ACE_Process *) |
virtual int | handle_close (ACE_HANDLE handle, ACE_Reactor_Mask close_mask) |
virtual int | handle_signal (int signum, siginfo_t *=0, ucontext_t *=0) |
virtual int | resume_handler (void) |
virtual int | handle_group_qos (ACE_HANDLE=ACE_INVALID_HANDLE) |
virtual void | reactor (ACE_Reactor *reactor) |
virtual ACE_Reactor * | reactor (void) const |
virtual ACE_Reactor_Timer_Interface * | reactor_timer_interface (void) const |
virtual Reference_Count | add_reference (void) |
virtual Reference_Count | remove_reference (void) |
Reference_Counting_Policy & | reference_counting_policy (void) |
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 from ACE_Event_Handler.
Reimplemented in ACE_QoS_Decorator.
|
virtual |
Forwards the request to its event_handler_ component.
Reimplemented from ACE_Event_Handler.
Reimplemented in ACE_QoS_Decorator.
|
virtual |
Forwards the request to its event_handler_ component.
Reimplemented from ACE_Event_Handler.
Reimplemented in ACE_QoS_Decorator.
|
private |
The event handler that is decorated by this class.