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/4Execute 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 tuple
Module: module to call
Func: function to call
Args: 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.