#include <EC_ObserverStrategy.h>
Inheritance diagram for TAO_EC_Null_ObserverStrategy:
Public Member Functions | |
TAO_EC_Null_ObserverStrategy (void) | |
Constructor. | |
virtual RtecEventChannelAdmin::Observer_Handle | append_observer (RtecEventChannelAdmin::Observer_ptr) |
The basic methods to support the EC strategies. | |
virtual void | remove_observer (RtecEventChannelAdmin::Observer_Handle) |
virtual void | connected (TAO_EC_ProxyPushConsumer *) |
virtual void | disconnected (TAO_EC_ProxyPushConsumer *) |
virtual void | connected (TAO_EC_ProxyPushSupplier *) |
virtual void | disconnected (TAO_EC_ProxyPushSupplier *) |
This class keeps no information and simply ignores the messages from the EC.
Definition at line 94 of file EC_ObserverStrategy.h.
|
Constructor.
Definition at line 8 of file EC_ObserverStrategy.inl.
00009 { 00010 } |
|
The basic methods to support the EC strategies.
Implements TAO_EC_ObserverStrategy. Definition at line 27 of file EC_ObserverStrategy.cpp.
00029 { 00030 throw RtecEventChannelAdmin::EventChannel::CANT_APPEND_OBSERVER(); 00031 } |
|
Used by the EC to inform the ObserverStrategy that a Supplier has connected or disconnected from it. Implements TAO_EC_ObserverStrategy. Definition at line 51 of file EC_ObserverStrategy.cpp.
00052 { 00053 } |
|
Used by the EC to inform the ObserverStrategy that a Consumer has connected or disconnected from it. Implements TAO_EC_ObserverStrategy. Definition at line 41 of file EC_ObserverStrategy.cpp.
00042 { 00043 } |
|
Implements TAO_EC_ObserverStrategy. Definition at line 56 of file EC_ObserverStrategy.cpp.
00057 { 00058 } |
|
Implements TAO_EC_ObserverStrategy. Definition at line 46 of file EC_ObserverStrategy.cpp.
00047 { 00048 } |
|
Implements TAO_EC_ObserverStrategy. Definition at line 34 of file EC_ObserverStrategy.cpp. References RtecEventChannelAdmin::Observer_Handle.
00036 { 00037 throw RtecEventChannelAdmin::EventChannel::CANT_REMOVE_OBSERVER(); 00038 } |