19962018 Ericsson AB. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. rpc Claes Wikstrom 1 1996-09-10 A
rpc Remote Procedure Call services.

This module contains services similar to Remote Procedure Calls. It also contains broadcast facilities and parallel evaluators. A remote procedure call is a method to call a function on a remote node and collect the answer. It is used for collecting information on a remote node, or for running a function with some specific side effects on the remote node.

As returned by async_call/4.

Broadcast a message asynchronously to a registered process on all nodes.

Equivalent to abcast([node()|nodes()], Name, Msg).

Broadcast a message asynchronously to a registered process on specific nodes.

Broadcasts the message Msg asynchronously to the registered process Name on the specified nodes.

Evaluate a function call on a node, asynchronous version.

Implements call streams with promises, a type of RPC that does not suspend the caller until the result is finished. Instead, a key is returned, which can be used later to collect the value. The key can be viewed as a promise to deliver the answer.

In this case, the key Key is returned, which can be used in a subsequent call to yield/1 or nb_yield/1,2 to retrieve the value of evaluating apply(Module, Function, Args) on node Node.

yield/1 and nb_yield/1,2 must be called by the same process from which this function was made otherwise they will never yield correctly.

Evaluate a function call on a node in the RPC server's context.

Same as call/4, but the RPC server at Node does not create a separate process to handle the call. Thus, this function can be used if the intention of the call is to block the RPC server from any other incoming requests until the request has been handled. The function can also be used for efficiency reasons when very small fast functions are evaluated, for example, BIFs that are guaranteed not to suspend.

Evaluate a function call on a node in the RPC server's context.

Same as block_call/4, but with a time-out value in the same manner as call/5.

Evaluate a function call on a node.

Evaluates apply(Module, Function, Args) on node Node and returns the corresponding value Res, or {badrpc, Reason} if the call fails.

Evaluate a function call on a node.

Evaluates apply(Module, Function, Args) on node Node and returns the corresponding value Res, or {badrpc, Reason} if the call fails. Timeout is a time-out value in milliseconds. If the call times out, Reason is timeout.

If the reply arrives after the call times out, no message contaminates the caller's message queue, as this function spawns off a middleman process to act as (a void) destination for such an orphan reply. This feature also makes this function more expensive than call/4 at the caller's end.

Run a function on a node ignoring the result.

Evaluates apply(Module, Function, Args) on node Node. No response is delivered and the calling process is not suspended until the evaluation is complete, as is the case with call/4,5.

Run a function on all nodes, ignoring the result.

Equivalent to eval_everywhere([node()|nodes()], Module, Function, Args).

Run a function on specific nodes, ignoring the result.

Evaluates apply(Module, Function, Args) on the specified nodes. No answers are collected.

Interact with the servers on a number of nodes.

Equivalent to multi_server_call([node()|nodes()], Name, Msg).

Interact with the servers on a number of nodes.

Can be used when interacting with servers called Name on the specified nodes. It is assumed that the servers receive messages in the format {From, Msg} and reply using From ! {Name, Node, Reply}, where Node is the name of the node where the server is located. The function returns {Replies, BadNodes}, where Replies is a list of all Reply values, and BadNodes is one of the following:

A list of the nodes that do not exist A list of the nodes where the server does not exist A list of the nodes where the server terminated before sending any reply.
Evaluate a function call on a number of nodes.

Equivalent to multicall([node()|nodes()], Module, Function, Args, infinity).

Evaluate a function call on a number of nodes.

Equivalent to multicall(Nodes, Module, Function, Args, infinity).

Evaluate a function call on a number of nodes.

Equivalent to multicall([node()|nodes()], Module, Function, Args, Timeout).

Evaluate a function call on a number of nodes.

In contrast to an RPC, a multicall is an RPC that is sent concurrently from one client to multiple servers. This is useful for collecting information from a set of nodes, or for calling a function on a set of nodes to achieve some side effects. It is semantically the same as iteratively making a series of RPCs on all the nodes, but the multicall is faster, as all the requests are sent at the same time and are collected one by one as they come back.

The function evaluates apply(Module, Function, Args) on the specified nodes and collects the answers. It returns {ResL, BadNodes}, where BadNodes is a list of the nodes that do not exist, and ResL is a list of the return values, or {badrpc, Reason} for failing calls. Timeout is a time (integer) in milliseconds, or infinity.

The following example is useful when new object code is to be loaded on all nodes in the network, and indicates some side effects that RPCs can produce:

%% Find object code for module Mod {Mod, Bin, File} = code:get_object_code(Mod), %% and load it on all nodes including this one {ResL, _} = rpc:multicall(code, load_binary, [Mod, File, Bin]), %% and then maybe check the ResL list.
Deliver the result of evaluating a function call on a node (non-blocking).

Equivalent to nb_yield(Key, 0).

Deliver the result of evaluating a function call on a node (non-blocking).

Non-blocking version of yield/1. It returns the tuple {value, Val} when the computation is finished, or timeout when Timeout milliseconds has elapsed.

This function must be called by the same process from which async_call/4 was made otherwise it will only return timeout.

Evaluate many function calls on all nodes in parallel.

Evaluates, for every tuple in FuncCalls, apply(Module, Function, Args) on some node in the network. Returns the list of return values, in the same order as in FuncCalls.

Information about a process.

Location transparent version of the BIF erlang:process_info/1 in ERTS.

Information about a process.

Location transparent version of the BIF erlang:process_info/2 in ERTS.

Parallel evaluation of mapping a function over a list.

Evaluates apply(Module, Function, [Elem|ExtraArgs]) for every element Elem in List1, in parallel. Returns the list of return values, in the same order as in List1.

Broadcast a message synchronously to a registered process on all nodes.

Equivalent to sbcast([node()|nodes()], Name, Msg).

Broadcast a message synchronously to a registered process on specific nodes.

Broadcasts the message Msg synchronously to the registered process Name on the specified nodes.

Returns {GoodNodes, BadNodes}, where GoodNodes is the list of nodes that have Name as a registered process.

The function is synchronous in the sense that it is known that all servers have received the message when the call returns. It is not possible to know that the servers have processed the message.

Any further messages sent to the servers, after this function has returned, are received by all servers after this message.

Interact with a server on a node.

Can be used when interacting with a server called Name on node Node. It is assumed that the server receives messages in the format {From, Msg} and replies using From ! {ReplyWrapper, Node, Reply}. This function makes such a server call and ensures that the entire call is packed into an atomic transaction, which either succeeds or fails. It never hangs, unless the server itself hangs.

The function returns the answer Reply as produced by the server Name, or {error, Reason}.

Deliver the result of evaluating a function call on a node (blocking).

Returns the promised answer from a previous async_call/4. If the answer is available, it is returned immediately. Otherwise, the calling process is suspended until the answer arrives from Node.

This function must be called by the same process from which async_call/4 was made otherwise it will never return.