#include <DII_Reply_Handler.h>
Inheritance diagram for TAO_DII_Reply_Handler:
Public Types | |
typedef TAO_DII_Reply_Handler_ptr | _ptr_type |
typedef TAO_DII_Reply_Handler_var | _var_type |
Public Member Functions | |
TAO_DII_Reply_Handler () | |
virtual | ~TAO_DII_Reply_Handler (void) |
virtual void | handle_response (TAO_InputCDR &incoming)=0 |
Callback method for asynchronous requests. | |
virtual void | handle_excep (TAO_InputCDR &incoming, CORBA::ULong reply_status)=0 |
Static Public Member Functions | |
TAO_DII_Reply_Handler * | _duplicate (TAO_DII_Reply_Handler_ptr) |
CORBA Object related methods. | |
TAO_DII_Reply_Handler * | _nil (void) |
TAO_DII_Reply_Handler * | _narrow (CORBA::Object_ptr) |
TAO_DII_Reply_Handler * | _unchecked_narrow (CORBA::Object_ptr) |
Static Public Attributes | |
int | _tao_class_id = 0 |
Provides a way to create requests and populate it with parameters for use in the Dynamic Invocation Interface.
Definition at line 73 of file DII_Reply_Handler.h.
|
Reimplemented from CORBA::LocalObject. Definition at line 94 of file DII_Reply_Handler.h. |
|
Reimplemented from CORBA::LocalObject. Definition at line 95 of file DII_Reply_Handler.h. |
|
Definition at line 30 of file DII_Reply_Handler.cpp.
00031 { 00032 } |
|
Definition at line 34 of file DII_Reply_Handler.cpp.
00035 { 00036 } |
|
CORBA Object related methods.
Definition at line 7 of file DII_Reply_Handler.inl. References TAO_Local_RefCounted_Object::_add_ref(), and TAO_DII_Reply_Handler_ptr. Referenced by TAO_DII_Reply_Handler_var::operator=().
00008 { 00009 if (x != 0) 00010 { 00011 x->_add_ref (); 00012 } 00013 00014 return x; 00015 } |
|
Reimplemented from CORBA::LocalObject. Definition at line 39 of file DII_Reply_Handler.cpp. References _unchecked_narrow().
00040 { 00041 return TAO_DII_Reply_Handler::_unchecked_narrow (obj); 00042 } |
|
Reimplemented from CORBA::LocalObject. Definition at line 23 of file DII_Reply_Handler.cpp. Referenced by TAO_DII_Reply_Handler_var::_retn(), _unchecked_narrow(), and TAO_DII_Reply_Handler_var::out().
00024 {
00025 return static_cast<TAO_DII_Reply_Handler_ptr> (0);
00026 }
|
|
Definition at line 45 of file DII_Reply_Handler.cpp. References _nil(), _tao_class_id, and CORBA::is_nil(). Referenced by _narrow().
00046 { 00047 if (CORBA::is_nil (obj)) 00048 return TAO_DII_Reply_Handler::_nil (); 00049 00050 return 00051 reinterpret_cast<TAO_DII_Reply_Handler_ptr> ( 00052 &TAO_DII_Reply_Handler::_tao_class_id); 00053 } |
|
Referenced by CORBA::Request::_tao_reply_stub(). |
|
Callback method for asynchronous requests.
Referenced by CORBA::Request::_tao_reply_stub(). |
|
Definition at line 29 of file DII_Reply_Handler.cpp. Referenced by _unchecked_narrow(). |