#include <Method_Request_Updates.h>
Inheritance diagram for TAO_Notify_Method_Request_Updates_No_Copy:
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. |
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.
00032 : TAO_Notify_Method_Request_Updates_No_Copy_Base (added, removed, proxy) 00033 { 00034 }
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.
References ACE_NEW_THROW_EX.
00042 { 00043 TAO_Notify_Method_Request_Queueable* request = 0; 00044 00045 ACE_NEW_THROW_EX (request, 00046 TAO_Notify_Method_Request_Updates (this->added_, this->removed_, this->proxy_), 00047 CORBA::NO_MEMORY ()); 00048 00049 return request; 00050 }
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.
References TAO_Notify_Method_Request_Updates_T< SEQ, PROXY, SEQ_PARAM, PROXY_PARAM >::execute_i().
Referenced by TAO_Notify_Proxy::types_changed().
00054 { 00055 return this->execute_i (); 00056 }