Command Object to send updates to proxys. More...
#include <Method_Request_Updates.h>
Public Member Functions | |
TAO_Notify_Method_Request_Updates_No_Copy (const TAO_Notify_EventTypeSeq &added, const TAO_Notify_EventTypeSeq &removed, TAO_Notify_Proxy *proxy) | |
Constructor. | |
virtual | ~TAO_Notify_Method_Request_Updates_No_Copy () |
Destructor. | |
virtual TAO_Notify_Method_Request_Queueable * | copy (void) |
Create a copy of this object. | |
virtual int | execute (void) |
Execute the Request. |
Command Object to send updates to proxys.
Definition at line 69 of file Method_Request_Updates.h.
TAO_Notify_Method_Request_Updates_No_Copy::TAO_Notify_Method_Request_Updates_No_Copy | ( | const TAO_Notify_EventTypeSeq & | added, | |
const TAO_Notify_EventTypeSeq & | removed, | |||
TAO_Notify_Proxy * | proxy | |||
) |
Constructor.
Definition at line 30 of file Method_Request_Updates.cpp.
: TAO_Notify_Method_Request_Updates_No_Copy_Base (added, removed, proxy) { }
TAO_Notify_Method_Request_Updates_No_Copy::~TAO_Notify_Method_Request_Updates_No_Copy | ( | ) | [virtual] |
TAO_Notify_Method_Request_Queueable * TAO_Notify_Method_Request_Updates_No_Copy::copy | ( | void | ) | [virtual] |
Create a copy of this object.
Implements TAO_Notify_Method_Request.
Definition at line 41 of file Method_Request_Updates.cpp.
{ TAO_Notify_Method_Request_Queueable* request = 0; ACE_NEW_THROW_EX (request, TAO_Notify_Method_Request_Updates (this->added_, this->removed_, this->proxy_), CORBA::NO_MEMORY ()); return request; }
int TAO_Notify_Method_Request_Updates_No_Copy::execute | ( | void | ) | [virtual] |
Execute the Request.
Implements TAO_Notify_Method_Request.
Definition at line 53 of file Method_Request_Updates.cpp.
{ return this->execute_i (); }