#include <Codeset_Service_Context_Handler.h>
Public Member Functions | |
virtual int | process_service_context (TAO_Transport &transport, const IOP::ServiceContext &context) |
virtual int | generate_service_context (TAO_Stub *stub, TAO_Transport &transport, TAO_Operation_Details &opdetails, TAO_Target_Specification &spec, TAO_OutputCDR &msg) |
Definition at line 28 of file Codeset_Service_Context_Handler.h.
int TAO_Codeset_Service_Context_Handler::generate_service_context | ( | TAO_Stub * | stub, | |
TAO_Transport & | transport, | |||
TAO_Operation_Details & | opdetails, | |||
TAO_Target_Specification & | spec, | |||
TAO_OutputCDR & | msg | |||
) | [virtual] |
Implements TAO_Service_Context_Handler.
Definition at line 26 of file Codeset_Service_Context_Handler.cpp.
{ if (transport.first_request ()) { TAO_Codeset_Manager * const csm = transport.orb_core ()->codeset_manager (); if (csm) { csm->generate_service_context (opdetails, transport); } } return 0; }
int TAO_Codeset_Service_Context_Handler::process_service_context | ( | TAO_Transport & | transport, | |
const IOP::ServiceContext & | context | |||
) | [virtual] |
Implements TAO_Service_Context_Handler.
Definition at line 18 of file Codeset_Service_Context_Handler.cpp.
{
return 0;
}