TAO_RTEvent
2.4.0
|
Dispatching strategy that minimizes priority inversion. More...
#include <EC_Priority_Dispatching.h>
Public Member Functions | |
TAO_EC_Priority_Dispatching (TAO_EC_Event_Channel_Base *ec) | |
virtual void | activate (void) |
virtual void | shutdown (void) |
virtual void | push (TAO_EC_ProxyPushSupplier *proxy, RtecEventComm::PushConsumer_ptr consumer, const RtecEventComm::EventSet &event, TAO_EC_QOS_Info &qos_info) |
virtual void | push_nocopy (TAO_EC_ProxyPushSupplier *proxy, RtecEventComm::PushConsumer_ptr consumer, RtecEventComm::EventSet &event, TAO_EC_QOS_Info &qos_info) |
Public Member Functions inherited from TAO_EC_Dispatching | |
virtual | ~TAO_EC_Dispatching (void) |
Destructor... More... | |
Private Attributes | |
ACE_Thread_Manager | thread_manager_ |
Use our own thread manager. More... | |
int | ntasks_ |
The number of active tasks. More... | |
TAO_EC_Dispatching_Task ** | tasks_ |
The tasks.. More... | |
RtecScheduler::Scheduler_var | scheduler_ |
The scheduler. More... | |
Dispatching strategy that minimizes priority inversion.
This strategy uses multiple queues, each serviced by a thread at different priority. This minimizes priority inversion because the consumers at higher priority are serviced before consumers at lower priority. It is more flexible than using the supplier thread to dispatch because it allows high-priority suppliers to push events to low-priority consumers (and vice-versa). It also isolates the supplier threads from the time spent on upcalls to the consumer objects, making the system easier to analyze and schedule.
TAO_EC_Priority_Dispatching::TAO_EC_Priority_Dispatching | ( | TAO_EC_Event_Channel_Base * | ec | ) |
The scheduler is used to find the range of priorities and similar info.
|
virtual |
Initialize all the data structures, activate any internal threads, etc.
Implements TAO_EC_Dispatching.
|
virtual |
The consumer represented by proxy should receive event. It can use the information in qos_info to determine the event priority (among other things).
Implements TAO_EC_Dispatching.
|
virtual |
Implements TAO_EC_Dispatching.
|
virtual |
Deactivate any internal threads and cleanup internal data structures, it should only return once the threads have finished their jobs.
Implements TAO_EC_Dispatching.
|
private |
The number of active tasks.
|
private |
The scheduler.
|
private |
The tasks..
|
private |
Use our own thread manager.