Public Member Functions

TAO_Notify_Method_Request_Dispatch_No_Copy Class Reference

Dispatchs an event to a proxy supplier. More...

#include <Method_Request_Dispatch.h>

Inheritance diagram for TAO_Notify_Method_Request_Dispatch_No_Copy:
Inheritance graph
[legend]
Collaboration diagram for TAO_Notify_Method_Request_Dispatch_No_Copy:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 TAO_Notify_Method_Request_Dispatch_No_Copy (const TAO_Notify_Method_Request_Event &request, TAO_Notify_ProxySupplier *proxy_supplier, bool filtering)
 Constuct construct from another method request.
virtual ~TAO_Notify_Method_Request_Dispatch_No_Copy ()
 Destructor.
virtual int execute (void)
 Execute the Request.
virtual
TAO_Notify_Method_Request_Queueable
copy (void)
 Create a copy of this method request.

Detailed Description

Dispatchs an event to a proxy supplier.

Definition at line 137 of file Method_Request_Dispatch.h.


Constructor & Destructor Documentation

TAO_Notify_Method_Request_Dispatch_No_Copy::TAO_Notify_Method_Request_Dispatch_No_Copy ( const TAO_Notify_Method_Request_Event request,
TAO_Notify_ProxySupplier proxy_supplier,
bool  filtering 
)

Constuct construct from another method request.

Definition at line 225 of file Method_Request_Dispatch.cpp.

  : TAO_Notify_Method_Request_Dispatch (request, request.event (), proxy_supplier, filtering)
{
}

TAO_Notify_Method_Request_Dispatch_No_Copy::~TAO_Notify_Method_Request_Dispatch_No_Copy (  )  [virtual]

Destructor.

Definition at line 233 of file Method_Request_Dispatch.cpp.

{
}


Member Function Documentation

TAO_Notify_Method_Request_Queueable * TAO_Notify_Method_Request_Dispatch_No_Copy::copy ( void   )  [virtual]

Create a copy of this method request.

Implements TAO_Notify_Method_Request.

Definition at line 244 of file Method_Request_Dispatch.cpp.

{
  TAO_Notify_Method_Request_Queueable* request = 0;

  TAO_Notify_Event::Ptr event_var (
    this->event_->queueable_copy () );

  ACE_NEW_THROW_EX (request,
                    TAO_Notify_Method_Request_Dispatch_Queueable (*this, event_var, this->proxy_supplier_.get(), this->filtering_),
                    //TAO_Notify_Method_Request_Dispatch_Queueable (*this, event_var, this->proxy_supplier_, this->filtering_),
                    CORBA::INTERNAL ());

  return request;
}

int TAO_Notify_Method_Request_Dispatch_No_Copy::execute ( void   )  [virtual]

Execute the Request.

Implements TAO_Notify_Method_Request.

Definition at line 238 of file Method_Request_Dispatch.cpp.

{
  return this->execute_i ();
}


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines