#include <CosEC_ProxyPushSupplier.h>
Inheritance diagram for TAO_Notify_CosEC_ProxyPushSupplier:
Public Member Functions | |
TAO_Notify_CosEC_ProxyPushSupplier (void) | |
Constructor. | |
virtual | ~TAO_Notify_CosEC_ProxyPushSupplier () |
Destructor. | |
virtual const char * | get_proxy_type_name (void) const |
virtual void | connect_push_consumer (CosEventComm::PushConsumer_ptr push_consumer) |
virtual void | disconnect_push_supplier () |
Private Member Functions | |
virtual void | release (void) |
Release. | |
Friends | |
class | TAO_Notify_Builder |
Definition at line 45 of file CosEC_ProxyPushSupplier.h.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_Notify_CosEC_ProxyPushSupplier::TAO_Notify_CosEC_ProxyPushSupplier | ( | void | ) |
TAO_Notify_CosEC_ProxyPushSupplier::~TAO_Notify_CosEC_ProxyPushSupplier | ( | ) | [virtual] |
void TAO_Notify_CosEC_ProxyPushSupplier::connect_push_consumer | ( | CosEventComm::PushConsumer_ptr | push_consumer | ) | [virtual] |
Definition at line 29 of file CosEC_ProxyPushSupplier.cpp.
References ACE_NEW_THROW_EX, TAO_Notify_ProxySupplier::connect(), and TAO_Notify_ProxySupplier::consumer().
00030 { 00031 // Convert Consumer to Base Type 00032 TAO_Notify_PushConsumer* consumer; 00033 ACE_NEW_THROW_EX (consumer, 00034 TAO_Notify_PushConsumer (this), 00035 CORBA::NO_MEMORY ()); 00036 00037 consumer->init (push_consumer); 00038 00039 this->connect (consumer); 00040 }
void TAO_Notify_CosEC_ProxyPushSupplier::disconnect_push_supplier | ( | ) | [virtual] |
Definition at line 43 of file CosEC_ProxyPushSupplier.cpp.
References TAO_Notify_ProxySupplier::destroy().
00044 { 00045 TAO_Notify_CosEC_ProxyPushSupplier::Ptr guard( this ); 00046 this->destroy (); 00047 }
const char * TAO_Notify_CosEC_ProxyPushSupplier::get_proxy_type_name | ( | void | ) | const [virtual] |
void TAO_Notify_CosEC_ProxyPushSupplier::release | ( | void | ) | [private, virtual] |
Release.
Implements TAO_Notify_Refcountable.
Definition at line 21 of file CosEC_ProxyPushSupplier.cpp.
friend class TAO_Notify_Builder [friend] |