#include <Method_Request_Event.h>
Inheritance diagram for TAO_Notify_Method_Request_Event_Queueable:
Public Member Functions | |
TAO_Notify_Method_Request_Event_Queueable (const TAO_Notify_Method_Request_Event &prev_request, const TAO_Notify_Event::Ptr &event) | |
TAO_Notify_Method_Request_Event_Queueable (TAO_Notify::Delivery_Request_Ptr &request) | |
virtual | ~TAO_Notify_Method_Request_Event_Queueable () |
Destructor. | |
virtual int | execute (void) |
satisfy the pure virtual method. Should never be called. | |
Private Attributes | |
TAO_Notify_Event::Ptr | event_var_ |
Definition at line 77 of file Method_Request_Event.h.
TAO_Notify_Method_Request_Event_Queueable::TAO_Notify_Method_Request_Event_Queueable | ( | const TAO_Notify_Method_Request_Event & | prev_request, | |
const TAO_Notify_Event::Ptr & | event | |||
) |
Constructor Not the event_var is passed as a separate parameter to avoid throwing exceptions from the constructor if it's necessary to copy the event.
Definition at line 68 of file Method_Request_Event.cpp.
00071 : TAO_Notify_Method_Request_Queueable (event.get ()) 00072 , TAO_Notify_Method_Request_Event (prev_request, event.get ()) 00073 , event_var_ (event) 00074 { 00075 }
TAO_Notify_Method_Request_Event_Queueable::TAO_Notify_Method_Request_Event_Queueable | ( | TAO_Notify::Delivery_Request_Ptr & | request | ) |
Definition at line 77 of file Method_Request_Event.cpp.
00079 : TAO_Notify_Method_Request_Queueable (request->event ().get ()) 00080 , TAO_Notify_Method_Request_Event (request, request->event ().get ()) 00081 , event_var_ (request->event ()) 00082 { 00083 }
TAO_Notify_Method_Request_Event_Queueable::~TAO_Notify_Method_Request_Event_Queueable | ( | ) | [virtual] |
int TAO_Notify_Method_Request_Event_Queueable::execute | ( | void | ) | [virtual] |
satisfy the pure virtual method. Should never be called.
Implements TAO_Notify_Method_Request.
Definition at line 90 of file Method_Request_Event.cpp.
References ACE_ASSERT.
00091 { 00092 ACE_ASSERT (false); 00093 return -1; 00094 }
Definition at line 98 of file Method_Request_Event.h.