TAO_CosEvent
2.1.9
|
ProxyPushSupplier. More...
#include <CEC_ProxyPushSupplier.h>
Public Types | |
typedef CosEventChannelAdmin::ProxyPushSupplier_ptr | _ptr_type |
typedef CosEventChannelAdmin::ProxyPushSupplier_var | _var_type |
Public Member Functions | |
TAO_CEC_ProxyPushSupplier (TAO_CEC_EventChannel *event_channel, const ACE_Time_Value &timeout) | |
constructor... More... | |
virtual | ~TAO_CEC_ProxyPushSupplier (void) |
typed ec constructor More... | |
virtual void | activate (CosEventChannelAdmin::ProxyPushSupplier_ptr &) |
Activate in the POA. More... | |
virtual void | deactivate (void) |
Deactivate from the POA. More... | |
CORBA::Boolean | is_connected (void) const |
Return 0 if no consumer is connected... More... | |
CosEventComm::PushConsumer_ptr | consumer (void) const |
virtual void | shutdown (void) |
The event channel is shutting down. More... | |
virtual void | push (const CORBA::Any &event) |
Internal methods to push an event to each consumer. More... | |
virtual void | push_nocopy (CORBA::Any &event) |
void | push_to_consumer (const CORBA::Any &event) |
Internal methods to invoke a typed event to each consumer. More... | |
void | reactive_push_to_consumer (const CORBA::Any &event) |
CORBA::Boolean | consumer_non_existent (CORBA::Boolean_out disconnected) |
virtual void | connect_push_consumer (CosEventComm::PushConsumer_ptr push_consumer) |
virtual void | disconnect_push_supplier (void) |
CORBA::ULong | _incr_refcnt (void) |
Increment and decrement the reference count. More... | |
CORBA::ULong | _decr_refcnt (void) |
virtual PortableServer::POA_ptr | _default_POA (void) |
virtual void | _add_ref (void) |
virtual void | _remove_ref (void) |
Protected Member Functions | |
void | consumer (CosEventComm::PushConsumer_ptr consumer) |
void | consumer_i (CosEventComm::PushConsumer_ptr consumer) |
CORBA::Boolean | is_connected_i (void) const |
The private version (without locking) of is_connected(). More... | |
void | cleanup_i (void) |
Release the child and the consumer. More... | |
CosEventComm::PushConsumer_ptr | apply_policy (CosEventComm::PushConsumer_ptr c) |
CORBA::Object_ptr | apply_policy_obj (CORBA::Object_ptr c) |
Private Attributes | |
TAO_CEC_EventChannel * | event_channel_ |
The Event Channel that owns this object. More... | |
ACE_Time_Value | timeout_ |
ACE_Lock * | lock_ |
The Typed Event Channel that owns this object. More... | |
CORBA::ULong | refcount_ |
The reference count. More... | |
CosEventComm::PushConsumer_var | consumer_ |
CosEventComm::PushConsumer_var | nopolicy_consumer_ |
The consumer without any policies applied. More... | |
PortableServer::POA_var | default_POA_ |
Store the default POA. More... | |
ProxyPushSupplier.
Implement the CosEventChannelAdmin::ProxyPushSupplier interface, remember that this class is used to communicate with a PushConsumer, so, in effect, this is the ambassador for a consumer inside the event channel. = MEMORY MANAGMENT It does not assume ownership of the TAO_CEC_Dispatching object. It makes a copy of the ConsumerQOS and the consumer object reference. = LOCKING Locking is strategized, the event channel acts as a factory for the locking strategies.
typedef CosEventChannelAdmin::ProxyPushSupplier_ptr TAO_CEC_ProxyPushSupplier::_ptr_type |
typedef CosEventChannelAdmin::ProxyPushSupplier_var TAO_CEC_ProxyPushSupplier::_var_type |
TAO_CEC_ProxyPushSupplier::TAO_CEC_ProxyPushSupplier | ( | TAO_CEC_EventChannel * | event_channel, |
const ACE_Time_Value & | timeout | ||
) |
constructor...
|
virtual |
typed ec constructor
destructor...
|
virtual |
CORBA::ULong TAO_CEC_ProxyPushSupplier::_decr_refcnt | ( | void | ) |
|
virtual |
CORBA::ULong TAO_CEC_ProxyPushSupplier::_incr_refcnt | ( | void | ) |
Increment and decrement the reference count.
|
virtual |
|
virtual |
Activate in the POA.
|
protected |
Assigns the parameter to both consumer_ and nopolicy_consumer_, and applies policies (when appropriate) to consumer_.
|
protected |
|
protected |
Release the child and the consumer.
|
virtual |
CosEventComm::PushConsumer_ptr TAO_CEC_ProxyPushSupplier::consumer | ( | void | ) | const |
Return the consumer object reference. It returns nil() if it has not connected yet. NOTE: This method does not return a new reference!!! Doing so will increase the locking overhead on the critical path.
|
protected |
Set the consumer, used by some implementations to change the policies used when invoking operations on the consumer.
|
protected |
CORBA::Boolean TAO_CEC_ProxyPushSupplier::consumer_non_existent | ( | CORBA::Boolean_out | disconnected | ) |
Invoke the _non_existent() pseudo-operation on the consumer. If it is disconnected then it returns true and sets the <disconnected> flag.
|
virtual |
Deactivate from the POA.
|
virtual |
CORBA::Boolean TAO_CEC_ProxyPushSupplier::is_connected | ( | void | ) | const |
Return 0 if no consumer is connected...
|
protected |
The private version (without locking) of is_connected().
|
virtual |
Internal methods to push an event to each consumer.
|
virtual |
void TAO_CEC_ProxyPushSupplier::push_to_consumer | ( | const CORBA::Any & | event | ) |
Internal methods to invoke a typed event to each consumer.
Pushes to the consumer, verifies that it is connected.
void TAO_CEC_ProxyPushSupplier::reactive_push_to_consumer | ( | const CORBA::Any & | event | ) |
|
virtual |
The event channel is shutting down.
|
private |
The consumer – use apply_policy() instead of assigning directly to consumer_. This will keep consumer_ and nopolicy_consumer_ in sync.
|
private |
Store the default POA.
|
private |
The Event Channel that owns this object.
|
private |
The Typed Event Channel that owns this object.
The locking strategy.
|
private |
The consumer without any policies applied.
|
private |
The reference count.
|
private |