#include <CosEC_ProxyPushSupplier.h>
Inheritance diagram for TAO_Notify_CosEC_ProxyPushSupplier:
Public Member Functions | |
TAO_Notify_CosEC_ProxyPushSupplier (void) | |
Constuctor. | |
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) throw ( CORBA::SystemException, CosEventChannelAdmin::AlreadyConnected, CosEventChannelAdmin::TypeError ) |
virtual void | disconnect_push_supplier () throw ( CORBA::SystemException ) |
Private Member Functions | |
virtual void | release (void) |
Release. | |
Friends | |
class | TAO_Notify_Builder |
|
Constuctor.
Definition at line 12 of file CosEC_ProxyPushSupplier.cpp.
00013 { 00014 } |
|
Destructor.
Definition at line 16 of file CosEC_ProxyPushSupplier.cpp.
00017 { 00018 } |
|
Definition at line 29 of file CosEC_ProxyPushSupplier.cpp. References ACE_CHECK, ACE_ENV_ARG_PARAMETER, ACE_NEW_THROW_EX, and TAO_Notify_PushConsumer::init().
00036 { 00037 // Convert Consumer to Base Type 00038 TAO_Notify_PushConsumer* consumer; 00039 ACE_NEW_THROW_EX (consumer, 00040 TAO_Notify_PushConsumer (this), 00041 CORBA::NO_MEMORY ()); 00042 00043 consumer->init (push_consumer ACE_ENV_ARG_PARAMETER); 00044 ACE_CHECK; 00045 00046 this->connect (consumer ACE_ENV_ARG_PARAMETER); 00047 } |
|
Definition at line 50 of file CosEC_ProxyPushSupplier.cpp. References ACE_ENV_SINGLE_ARG_PARAMETER.
00054 { 00055 TAO_Notify_CosEC_ProxyPushSupplier::Ptr guard( this ); 00056 this->destroy (ACE_ENV_SINGLE_ARG_PARAMETER); 00057 } |
|
Implements TAO_Notify_Proxy. Definition at line 60 of file CosEC_ProxyPushSupplier.cpp.
00061 { 00062 return "ec_proxy_push_supplier"; 00063 } |
|
Release.
Implements TAO_Notify_Refcountable. Definition at line 21 of file CosEC_ProxyPushSupplier.cpp.
00022 { 00023 00024 delete this; 00025 //@@ inform factory 00026 } |
|
Reimplemented from TAO_Notify_Object. Definition at line 48 of file CosEC_ProxyPushSupplier.h. |