Lookup command object looks up the event type of the given event in the consumer map and send the event to each proxysupplier. More...
#include <Method_Request_Lookup.h>
Public Member Functions | |
TAO_Notify_Method_Request_Lookup_No_Copy (const TAO_Notify_Event *event, TAO_Notify_ProxyConsumer *proxy_consumer) | |
Constructor. | |
virtual | ~TAO_Notify_Method_Request_Lookup_No_Copy () |
Destructor. | |
virtual int | execute (void) |
Execute the Request. | |
virtual TAO_Notify_Method_Request_Queueable * | copy (void) |
Create a copy of this object. |
Lookup command object looks up the event type of the given event in the consumer map and send the event to each proxysupplier.
Definition at line 119 of file Method_Request_Lookup.h.
TAO_Notify_Method_Request_Lookup_No_Copy::TAO_Notify_Method_Request_Lookup_No_Copy | ( | const TAO_Notify_Event * | event, | |
TAO_Notify_ProxyConsumer * | proxy_consumer | |||
) |
Constructor.
Definition at line 201 of file Method_Request_Lookup.cpp.
: TAO_Notify_Method_Request_Lookup (event, proxy_consumer) { }
TAO_Notify_Method_Request_Lookup_No_Copy::~TAO_Notify_Method_Request_Lookup_No_Copy | ( | ) | [virtual] |
TAO_Notify_Method_Request_Queueable * TAO_Notify_Method_Request_Lookup_No_Copy::copy | ( | void | ) | [virtual] |
Create a copy of this object.
Implements TAO_Notify_Method_Request.
Definition at line 219 of file Method_Request_Lookup.cpp.
{ TAO_Notify_Method_Request_Queueable* request; TAO_Notify_Event::Ptr event(this->event_->queueable_copy()); ACE_NEW_THROW_EX (request, TAO_Notify_Method_Request_Lookup_Queueable (event, this->proxy_consumer_), CORBA::INTERNAL ()); return request; }
int TAO_Notify_Method_Request_Lookup_No_Copy::execute | ( | void | ) | [virtual] |
Execute the Request.
Implements TAO_Notify_Method_Request.
Definition at line 213 of file Method_Request_Lookup.cpp.
{ return this->execute_i (); }