#include <EC_Supplier_Filter.h>
Inheritance diagram for TAO_EC_Filter_Worker:
Public Member Functions | |
TAO_EC_Filter_Worker (RtecEventComm::EventSet &event, const TAO_EC_QOS_Info &event_info) | |
virtual void | work (TAO_EC_ProxyPushSupplier *supplier) |
Private Attributes | |
RtecEventComm::EventSet & | event_ |
The event we push on each case, use a reference to avoid copies. | |
const TAO_EC_QOS_Info & | event_info_ |
The QoS info propagated on each event. |
Definition at line 121 of file EC_Supplier_Filter.h.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE TAO_EC_Filter_Worker::TAO_EC_Filter_Worker | ( | RtecEventComm::EventSet & | event, | |
const TAO_EC_QOS_Info & | event_info | |||
) |
Definition at line 8 of file EC_Supplier_Filter.inl.
00010 : event_ (event), 00011 event_info_ (event_info) 00012 { 00013 }
void TAO_EC_Filter_Worker::work | ( | TAO_EC_ProxyPushSupplier * | supplier | ) | [virtual] |
Implements TAO_ESF_Worker< TAO_EC_ProxyPushSupplier >.
Definition at line 22 of file EC_Supplier_Filter.cpp.
References event_info_, and TAO_EC_ProxyPushSupplier::filter().
00023 { 00024 TAO_EC_QOS_Info qos_info = this->event_info_; 00025 supplier->filter (this->event_, qos_info); 00026 }
The event we push on each case, use a reference to avoid copies.
Definition at line 131 of file EC_Supplier_Filter.h.
const TAO_EC_QOS_Info& TAO_EC_Filter_Worker::event_info_ [private] |
The QoS info propagated on each event.
Definition at line 134 of file EC_Supplier_Filter.h.
Referenced by work().