TAO_EC_Factory Class Reference

Abstract base class for the Event Channel components. More...

#include <EC_Factory.h>

Inheritance diagram for TAO_EC_Factory:

Inheritance graph
[legend]
Collaboration diagram for TAO_EC_Factory:

Collaboration graph
[legend]
List of all members.

Public Member Functions

virtual ~TAO_EC_Factory (void)
 destructor...

virtual TAO_EC_Dispatchingcreate_dispatching (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the dispatching module.

virtual void destroy_dispatching (TAO_EC_Dispatching *)=0
virtual TAO_EC_Filter_Buildercreate_filter_builder (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the filter builder.

virtual void destroy_filter_builder (TAO_EC_Filter_Builder *)=0
virtual TAO_EC_Supplier_Filter_Buildercreate_supplier_filter_builder (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the filter builder.

virtual void destroy_supplier_filter_builder (TAO_EC_Supplier_Filter_Builder *)=0
virtual TAO_EC_ConsumerAdmincreate_consumer_admin (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the consumer admin implementation.

virtual void destroy_consumer_admin (TAO_EC_ConsumerAdmin *)=0
virtual TAO_EC_SupplierAdmincreate_supplier_admin (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the supplier admin implementation.

virtual void destroy_supplier_admin (TAO_EC_SupplierAdmin *)=0
virtual TAO_EC_ProxyPushSuppliercreate_proxy_push_supplier (TAO_EC_Event_Channel_Base *)=0
 Create and destroy a ProxyPushSupplier.

virtual void destroy_proxy_push_supplier (TAO_EC_ProxyPushSupplier *)=0
virtual TAO_EC_ProxyPushConsumercreate_proxy_push_consumer (TAO_EC_Event_Channel_Base *)=0
 Create and destroy a ProxyPushConsumer.

virtual void destroy_proxy_push_consumer (TAO_EC_ProxyPushConsumer *)=0
virtual TAO_EC_Timeout_Generatorcreate_timeout_generator (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the timer module.

virtual void destroy_timeout_generator (TAO_EC_Timeout_Generator *)=0
virtual TAO_EC_ObserverStrategycreate_observer_strategy (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the observer strategy.

virtual void destroy_observer_strategy (TAO_EC_ObserverStrategy *)=0
virtual TAO_EC_Scheduling_Strategycreate_scheduling_strategy (TAO_EC_Event_Channel_Base *)=0
 Create and destroy the observer strategy.

virtual void destroy_scheduling_strategy (TAO_EC_Scheduling_Strategy *)=0
virtual TAO_EC_ProxyPushConsumer_Collectioncreate_proxy_push_consumer_collection (TAO_EC_Event_Channel_Base *)=0
 Create and destroy a collection of TAO_EC_ProxyPushConsumers.

virtual void destroy_proxy_push_consumer_collection (TAO_EC_ProxyPushConsumer_Collection *)=0
virtual TAO_EC_ProxyPushSupplier_Collectioncreate_proxy_push_supplier_collection (TAO_EC_Event_Channel_Base *)=0
 Create and destroy a collection of TAO_EC_ProxyPushSuppliers.

virtual void destroy_proxy_push_supplier_collection (TAO_EC_ProxyPushSupplier_Collection *)=0
virtual ACE_Lockcreate_consumer_lock (void)=0
virtual void destroy_consumer_lock (ACE_Lock *)=0
virtual ACE_Lockcreate_supplier_lock (void)=0
virtual void destroy_supplier_lock (ACE_Lock *)=0
virtual TAO_EC_ConsumerControlcreate_consumer_control (TAO_EC_Event_Channel_Base *)=0
virtual void destroy_consumer_control (TAO_EC_ConsumerControl *)=0
virtual TAO_EC_SupplierControlcreate_supplier_control (TAO_EC_Event_Channel_Base *)=0
virtual void destroy_supplier_control (TAO_EC_SupplierControl *)=0

Detailed Description

Abstract base class for the Event Channel components.

Defines the EC_Factory interface.

Memory Management

The objects it creates are owned by this class, the client must invoke the corresponding destroy() method to release them. Some implementations may require a different instance for the EC_Factory for each instance of Event_Channel.

Definition at line 68 of file EC_Factory.h.


Constructor & Destructor Documentation

TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_EC_Factory::~TAO_EC_Factory void   )  [virtual]
 

destructor...

Definition at line 10 of file EC_Factory.cpp.

00011 {
00012 }


Member Function Documentation

virtual TAO_EC_ConsumerAdmin* TAO_EC_Factory::create_consumer_admin TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the consumer admin implementation.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::create_consumer_admin(), and TAO_EC_Event_Channel_Base::create_strategies().

virtual TAO_EC_ConsumerControl* TAO_EC_Factory::create_consumer_control TAO_EC_Event_Channel_Base  )  [pure virtual]
 

The ConsumerControl and SupplierControl strategies are used to discard non-existent consumers and suppliers

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::create_consumer_control(), and TAO_EC_Event_Channel_Base::create_strategies().

virtual ACE_Lock* TAO_EC_Factory::create_consumer_lock void   )  [pure virtual]
 

Create and destroy the locking strategies for both ProxyPushConsumers and ProxyPushSuppliers

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::create_consumer_lock(), and TAO_EC_Event_Channel_Base::create_consumer_lock().

virtual TAO_EC_Dispatching* TAO_EC_Factory::create_dispatching TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the dispatching module.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Kokyu_Factory, TAO_EC_Null_Factory, TAO_EC_RTCORBA_Factory, TAO_EC_Sched_Factory, and TAO_EC_TPC_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_strategies().

virtual TAO_EC_Filter_Builder* TAO_EC_Factory::create_filter_builder TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the filter builder.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Kokyu_Factory, TAO_EC_Null_Factory, TAO_EC_RTCORBA_Factory, and TAO_EC_Sched_Factory.

Referenced by TAO_EC_RTCORBA_Factory::create_filter_builder(), and TAO_EC_Event_Channel_Base::create_strategies().

virtual TAO_EC_ObserverStrategy* TAO_EC_Factory::create_observer_strategy TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the observer strategy.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::create_observer_strategy(), and TAO_EC_Event_Channel_Base::create_strategies().

virtual TAO_EC_ProxyPushConsumer* TAO_EC_Factory::create_proxy_push_consumer TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy a ProxyPushConsumer.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, TAO_EC_RTCORBA_Factory, and TAO_EC_TPC_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_proxy(), and TAO_EC_RTCORBA_Factory::create_proxy_push_consumer().

virtual TAO_EC_ProxyPushConsumer_Collection* TAO_EC_Factory::create_proxy_push_consumer_collection TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy a collection of TAO_EC_ProxyPushConsumers.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_proxy_collection(), and TAO_EC_RTCORBA_Factory::create_proxy_push_consumer_collection().

virtual TAO_EC_ProxyPushSupplier* TAO_EC_Factory::create_proxy_push_supplier TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy a ProxyPushSupplier.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, TAO_EC_RTCORBA_Factory, and TAO_EC_TPC_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_proxy(), and TAO_EC_RTCORBA_Factory::create_proxy_push_supplier().

virtual TAO_EC_ProxyPushSupplier_Collection* TAO_EC_Factory::create_proxy_push_supplier_collection TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy a collection of TAO_EC_ProxyPushSuppliers.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_proxy_collection(), and TAO_EC_RTCORBA_Factory::create_proxy_push_supplier_collection().

virtual TAO_EC_Scheduling_Strategy* TAO_EC_Factory::create_scheduling_strategy TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the observer strategy.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Kokyu_Factory, TAO_EC_Null_Factory, TAO_EC_RTCORBA_Factory, and TAO_EC_Sched_Factory.

Referenced by TAO_EC_RTCORBA_Factory::create_scheduling_strategy(), and TAO_EC_Event_Channel_Base::create_strategies().

virtual TAO_EC_SupplierAdmin* TAO_EC_Factory::create_supplier_admin TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the supplier admin implementation.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_strategies(), and TAO_EC_RTCORBA_Factory::create_supplier_admin().

virtual TAO_EC_SupplierControl* TAO_EC_Factory::create_supplier_control TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_strategies(), and TAO_EC_RTCORBA_Factory::create_supplier_control().

virtual TAO_EC_Supplier_Filter_Builder* TAO_EC_Factory::create_supplier_filter_builder TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the filter builder.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_strategies(), and TAO_EC_RTCORBA_Factory::create_supplier_filter_builder().

virtual ACE_Lock* TAO_EC_Factory::create_supplier_lock void   )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::create_supplier_lock(), and TAO_EC_Event_Channel_Base::create_supplier_lock().

virtual TAO_EC_Timeout_Generator* TAO_EC_Factory::create_timeout_generator TAO_EC_Event_Channel_Base  )  [pure virtual]
 

Create and destroy the timer module.

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Kokyu_Factory, TAO_EC_Null_Factory, TAO_EC_RTCORBA_Factory, and TAO_EC_Sched_Factory.

Referenced by TAO_EC_Event_Channel_Base::create_strategies(), and TAO_EC_RTCORBA_Factory::create_timeout_generator().

virtual void TAO_EC_Factory::destroy_consumer_admin TAO_EC_ConsumerAdmin  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_consumer_admin(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_consumer_control TAO_EC_ConsumerControl  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_consumer_control(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_consumer_lock ACE_Lock  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_consumer_lock(), and TAO_EC_Event_Channel_Base::destroy_consumer_lock().

virtual void TAO_EC_Factory::destroy_dispatching TAO_EC_Dispatching  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_dispatching(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_filter_builder TAO_EC_Filter_Builder  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_filter_builder(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_observer_strategy TAO_EC_ObserverStrategy  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_observer_strategy(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_proxy_push_consumer TAO_EC_ProxyPushConsumer  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::destroy_proxy(), and TAO_EC_RTCORBA_Factory::destroy_proxy_push_consumer().

virtual void TAO_EC_Factory::destroy_proxy_push_consumer_collection TAO_EC_ProxyPushConsumer_Collection  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::destroy_proxy_collection(), and TAO_EC_RTCORBA_Factory::destroy_proxy_push_consumer_collection().

virtual void TAO_EC_Factory::destroy_proxy_push_supplier TAO_EC_ProxyPushSupplier  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::destroy_proxy(), and TAO_EC_RTCORBA_Factory::destroy_proxy_push_supplier().

virtual void TAO_EC_Factory::destroy_proxy_push_supplier_collection TAO_EC_ProxyPushSupplier_Collection  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_Event_Channel_Base::destroy_proxy_collection(), and TAO_EC_RTCORBA_Factory::destroy_proxy_push_supplier_collection().

virtual void TAO_EC_Factory::destroy_scheduling_strategy TAO_EC_Scheduling_Strategy  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_scheduling_strategy(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_supplier_admin TAO_EC_SupplierAdmin  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_supplier_admin(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_supplier_control TAO_EC_SupplierControl  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_supplier_control(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_supplier_filter_builder TAO_EC_Supplier_Filter_Builder  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_supplier_filter_builder(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().

virtual void TAO_EC_Factory::destroy_supplier_lock ACE_Lock  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_supplier_lock(), and TAO_EC_Event_Channel_Base::destroy_supplier_lock().

virtual void TAO_EC_Factory::destroy_timeout_generator TAO_EC_Timeout_Generator  )  [pure virtual]
 

Implemented in TAO_EC_Basic_Factory, TAO_EC_Default_Factory, TAO_EC_Null_Factory, and TAO_EC_RTCORBA_Factory.

Referenced by TAO_EC_RTCORBA_Factory::destroy_timeout_generator(), and TAO_EC_Event_Channel_Base::~TAO_EC_Event_Channel_Base().


The documentation for this class was generated from the following files:
Generated on Thu Nov 9 13:14:45 2006 for TAO_RTEvent by doxygen 1.3.6