#include <EC_Gateway.h>
Inheritance diagram for TAO_EC_Gateway:

Public Member Functions | |
| TAO_EC_Gateway (void) | |
| Default constructor. | |
| virtual | ~TAO_EC_Gateway (void) |
| Destructor. | |
| virtual void | close (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)=0 |
| void | observer_handle (RtecEventChannelAdmin::Observer_Handle h) |
| Obtain and modify the observer handle. | |
| RtecEventChannelAdmin::Observer_Handle | observer_handle (void) const |
Private Attributes | |
| RtecEventChannelAdmin::Observer_Handle | handle_ |
There are several ways to connect several EC together, for instance: + A single class can use normal IIOP and connect to one EC as a supplier and to another EC as a consumer. + A class connects as a consumer and transmit the events using multicast, another class receives the multicast messages and transform them back into a push() call. This is an abstract class to represent all the different strategies for EC distribution.
Definition at line 45 of file EC_Gateway.h.
|
|
Default constructor.
|
|
|
Destructor.
Definition at line 16 of file EC_Gateway.cpp.
00017 {
00018 }
|
|
|
The gateway must disconnect from all the relevant event channels, or any other communication media (such as multicast groups). Implemented in TAO_EC_Gateway_IIOP. |
|
|
Definition at line 27 of file EC_Gateway.cpp.
00028 {
00029 return this->handle_;
00030 }
|
|
|
Obtain and modify the observer handle.
Definition at line 21 of file EC_Gateway.cpp. References RtecEventChannelAdmin::Observer_Handle.
00022 {
00023 this->handle_ = h;
00024 }
|
|
|
Definition at line 64 of file EC_Gateway.h. |
1.3.6