NAME
grpc_call_arg_stack
- Executes an RPC.
SYNOPSIS
int grpc_call_arg_stack(grpc_function_handle_t *handle,
grpc_arg_stack_t *stack)
ARGUMENTS
grpc_function_handle_t *handle
- The function handle
grpc_arg_stack_t *stack
- The stack that holds the arguments for passing to the function called by the RPC.
DESCRIPTION
The grpc_call_arg_stack() function calls the function defined by the function handle.
The grpc_call_arg_stack() function is blocked until the called function completes execution.
This function is MT-safe.
RETURN VALUE
If successful, 0 is returned. In the case of an error, -1 is returned
ERRORS
GRPC_NOT_INITIALIZED
- The grpc_initialize() function has not been executed.
GRPC_OTHER_ERROR_CODE
- Internal error detected.
last update : $Date: 2005/07/11 07:11:24 $