![]() |
Overview Retrieves the return value of a DII request. Original class CORBA::Request
Intended Usage
The result method is used by a client application to access the return value of a Dynamic Invocation Interface (DII) request. The return value is specified using a CORBA::NamedValue object and must not be accessed until after the request has been invoked. For additional information, see the NamedValue class description. The return value of a Request object is set by the CORBA::Request::invoke or CORBA::Request::get_response method, depending whether the request is synchronous or asynchronous, respectively.
IDL Syntax
CORBA::NamedValue_ptr result();
Input parameters
None.
Return values
- CORBA::NamedValue_ptr
- A pointer to the return value of the DII request. Ownership of the return value is maintained by the Request object; the return value must not be freed by the caller. If the DII request raises an exception, the return value is unpredictable.