#include <CEC_ConsumerControl.h>
Inheritance diagram for TAO_CEC_ConsumerControl:
Public Member Functions | |
TAO_CEC_ConsumerControl (void) | |
virtual | ~TAO_CEC_ConsumerControl (void) |
destructor... | |
virtual int | activate (void) |
virtual int | shutdown (void) |
virtual void | consumer_not_exist (TAO_CEC_ProxyPushSupplier *proxy) |
virtual void | consumer_not_exist (TAO_CEC_ProxyPullSupplier *proxy) |
virtual void | system_exception (TAO_CEC_ProxyPushSupplier *proxy, CORBA::SystemException &) |
Some system exception was rasied while trying to push an event. | |
virtual bool | need_to_disconnect (PortableServer::ServantBase *proxy) |
virtual void | successful_transmission (PortableServer::ServantBase *proxy) |
Allow others to inform us when a send or receive was successful. |
Defines the interface for the consumer control strategy. This strategy handles misbehaving or failing consumers. = MEMORY MANAGMENT = LOCKING = TODO
Definition at line 49 of file CEC_ConsumerControl.h.
TAO_BEGIN_VERSIONED_NAMESPACE_DECL TAO_CEC_ConsumerControl::TAO_CEC_ConsumerControl | ( | void | ) |
Constructor. It does not assume ownership of the <event_channel> parameter.
Definition at line 12 of file CEC_ConsumerControl.cpp.
TAO_CEC_ConsumerControl::~TAO_CEC_ConsumerControl | ( | void | ) | [virtual] |
int TAO_CEC_ConsumerControl::activate | ( | void | ) | [virtual] |
Activate any internal threads or timers used to poll the state of the consumers
Reimplemented in TAO_CEC_Reactive_ConsumerControl.
Definition at line 21 of file CEC_ConsumerControl.cpp.
Referenced by TAO_CEC_TypedEventChannel::activate(), and TAO_CEC_EventChannel::activate().
void TAO_CEC_ConsumerControl::consumer_not_exist | ( | TAO_CEC_ProxyPullSupplier * | proxy | ) | [virtual] |
Invoked by helper classes when they detect that a consumer no longer exists (i.e. _non_existent() returns true and/or the CORBA::OBJECT_NOT_EXIST exception has been raised).
Reimplemented in TAO_CEC_Reactive_ConsumerControl.
Definition at line 38 of file CEC_ConsumerControl.cpp.
void TAO_CEC_ConsumerControl::consumer_not_exist | ( | TAO_CEC_ProxyPushSupplier * | proxy | ) | [virtual] |
When pushing an event to the consumer a CORBA::OBJECT_NOT_EXIST exception was raised. The only interpretation is that the object has been destroyed. The strategy has to (at the very least), reclaim all the resources attached to that object.
Reimplemented in TAO_CEC_Reactive_ConsumerControl.
Definition at line 33 of file CEC_ConsumerControl.cpp.
Referenced by TAO_CEC_Ping_Pull_Consumer::work(), and TAO_CEC_Ping_Push_Consumer::work().
bool TAO_CEC_ConsumerControl::need_to_disconnect | ( | PortableServer::ServantBase * | proxy | ) | [virtual] |
Do we need to disconnect this supplier? The parameter type for proxy is PortableServer::ServantBase* due to the fact that this method will be used for TAO_CEC_ProxyPushSupplier's and TAO_CEC_ProxyPullSupplier's.
Reimplemented in TAO_CEC_Reactive_ConsumerControl.
Definition at line 49 of file CEC_ConsumerControl.cpp.
int TAO_CEC_ConsumerControl::shutdown | ( | void | ) | [virtual] |
Reimplemented in TAO_CEC_Reactive_ConsumerControl.
Definition at line 27 of file CEC_ConsumerControl.cpp.
Referenced by TAO_CEC_TypedEventChannel::shutdown(), and TAO_CEC_EventChannel::shutdown().
void TAO_CEC_ConsumerControl::successful_transmission | ( | PortableServer::ServantBase * | proxy | ) | [virtual] |
Allow others to inform us when a send or receive was successful.
Reimplemented in TAO_CEC_Reactive_ConsumerControl.
Definition at line 55 of file CEC_ConsumerControl.cpp.
Referenced by TAO_CEC_ProxyPushSupplier::push_to_consumer(), and TAO_CEC_ProxyPushSupplier::reactive_push_to_consumer().
void TAO_CEC_ConsumerControl::system_exception | ( | TAO_CEC_ProxyPushSupplier * | proxy, | |
CORBA::SystemException & | ||||
) | [virtual] |
Some system exception was rasied while trying to push an event.
Reimplemented in TAO_CEC_Reactive_ConsumerControl.
Definition at line 43 of file CEC_ConsumerControl.cpp.