summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@lshift.net>2009-03-12 19:03:32 +0000
committerMatthias Radestock <matthias@lshift.net>2009-03-12 19:03:32 +0000
commit32ff34ae81fddd0707c5e699194cea42c5f7387c (patch)
tree7622fc280547f21e9e043f3f41b9d86e2784c65f /src
parentf0a5e2c1cc96a2dc387b17dac7c551e5eb09c21e (diff)
downloadrabbitmq-server-git-32ff34ae81fddd0707c5e699194cea42c5f7387c.tar.gz
document priority functionality
Diffstat (limited to 'src')
-rw-r--r--src/gen_server2.erl5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gen_server2.erl b/src/gen_server2.erl
index 11ac7987a3..ba8becfca9 100644
--- a/src/gen_server2.erl
+++ b/src/gen_server2.erl
@@ -16,6 +16,11 @@
%% The original code could reorder messages when communicating with a
%% process on a remote node that was not currently connected.
%%
+%% 4) The new functions gen_server2:pcall/3, pcall/4, and pcast/3
+%% allow callers to attach priorities to requests. Requests with
+%% higher priorities are processed before requests with lower
+%% priorities. The default priority is 0.
+%%
%% All modifications are (C) 2009 LShift Ltd.
%% ``The contents of this file are subject to the Erlang Public License,