diff options
| author | Matthias Radestock <matthias@lshift.net> | 2009-03-12 19:03:32 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2009-03-12 19:03:32 +0000 |
| commit | 32ff34ae81fddd0707c5e699194cea42c5f7387c (patch) | |
| tree | 7622fc280547f21e9e043f3f41b9d86e2784c65f /src | |
| parent | f0a5e2c1cc96a2dc387b17dac7c551e5eb09c21e (diff) | |
| download | rabbitmq-server-git-32ff34ae81fddd0707c5e699194cea42c5f7387c.tar.gz | |
document priority functionality
Diffstat (limited to 'src')
| -rw-r--r-- | src/gen_server2.erl | 5 |
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, |
