diff options
author | Matthias Radestock <matthias@rabbitmq.com> | 2014-02-05 16:22:08 +0000 |
---|---|---|
committer | Matthias Radestock <matthias@rabbitmq.com> | 2014-02-05 16:22:08 +0000 |
commit | aa18879dfc717a8f0685ffca661ef96e7f51bde8 (patch) | |
tree | fd1f8ef12f15f29709bf871f247a66907690354c | |
parent | a43a1639b511fe29fd763a5ac7b523a6fe15d58d (diff) | |
download | rabbitmq-server-bug25980.tar.gz |
improve docsbug25980
-rw-r--r-- | src/gen_server2.erl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gen_server2.erl b/src/gen_server2.erl index f0328c53..ee82bcb3 100644 --- a/src/gen_server2.erl +++ b/src/gen_server2.erl @@ -82,12 +82,12 @@ %% can be invoked on the state, get back the result. The state is not %% modified. %% -%% 10) an mcall/1 function has been added, to facilitate running -%% gen_server:call/3 in parallel to multiple servers and awaiting all -%% the results. Unlike multi_call, which operates on same-named -%% processes residing on a list of nodes, it operates on a list of -%% processes that can be supplied as pid, global name, local name, or -%% local-name-on-a-particular-node, just as call/3 does. +%% 10) an mcall/1 function has been added for performing multiple +%% call/3 in parallel. Unlike multi_call, which sends the same request +%% to same-named processes residing on a supplied list of nodes, it +%% operates on name/request pairs, where name is anything accepted by +%% call/3, i.e. a pid, global name, local name, or local name on a +%% particular node. %% %% All modifications are (C) 2009-2013 GoPivotal, Inc. |