#include <EC_Per_Supplier_Filter.h>
Inheritance diagram for TAO_EC_Per_Supplier_Filter_Builder:
Public Member Functions | |
TAO_EC_Per_Supplier_Filter_Builder (TAO_EC_Event_Channel_Base *ec) | |
constructor.... | |
virtual TAO_EC_Supplier_Filter * | create (RtecEventChannelAdmin::SupplierQOS &qos) |
virtual void | destroy (TAO_EC_Supplier_Filter *filter) |
The user is returning the filter for destruction/recycling. | |
Private Attributes | |
TAO_EC_Event_Channel_Base * | event_channel_ |
The event channel. |
Definition at line 93 of file EC_Per_Supplier_Filter.h.
|
constructor....
Definition at line 9 of file EC_Per_Supplier_Filter.inl.
00010 : event_channel_ (ec) 00011 { 00012 } |
|
Create the filter. The consumer is bound to the returned Supplier_Filter, it must be unbound upon destruction and/or disconnection. Implements TAO_EC_Supplier_Filter_Builder. Definition at line 190 of file EC_Per_Supplier_Filter.cpp.
00192 { 00193 return new TAO_EC_Per_Supplier_Filter (this->event_channel_); 00194 } |
|
The user is returning the filter for destruction/recycling.
Implements TAO_EC_Supplier_Filter_Builder. Definition at line 197 of file EC_Per_Supplier_Filter.cpp.
00199 {
00200 delete x;
00201 }
|
|
The event channel.
Definition at line 107 of file EC_Per_Supplier_Filter.h. |