Module erpc
An implementation of the Erlang/OTP erpc interface.
Description
This module implements a strict subset of the Erlang/OTP erpc interface.
Function Index
execute_call/4 | Execute a call locally, exiting with the result. |
Function Details
execute_call/4
execute_call(Reference::reference(), Module::module(), Func::atom(), Args::[any()]) -> no_return()
Reference
: reference of the request, passed in exit tupleModule
: module to callFunc
: function to callArgs
: argument of the call
Execute a call locally, exiting with the result. This function is called from rpc on other nodes using spawn_request BIF.