Distribunator.Distributed.do_node_rpc

You're seeing just the function do_node_rpc, go back to Distribunator.Distributed module for more information.
Link to this function

do_node_rpc(target_node, mod, func, args, callback)

Specs

do_node_rpc(atom(), atom(), atom(), list(), function() | nil) ::
  {:error, any()} | any()

Perform an :rpc.call/4 on the target node. The callback is called with the target function's return value from the context of the intermediate rpc pid. This allows the return value to be used before the target node sees that the caling pid exited. Useful for when the target node wants to monitor calling pids.

Parameters

  • target_node The node on which to execute the function
  • mod The module atom to call the function on
  • func The function atom to call
  • args The argument list to function
  • callback The callback to call during rpc invocation after the target function returns but before the rpc call returns. Can be nil.

Returns

  • {:badrpc, reason} RPC failed, for reason
  • {:error, "no node"} There were no nodes with name registered
  • any The result of apply(mod, func, args)