summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2011-03-14 11:43:15 +0000
committerSimon MacMullen <simon@rabbitmq.com>2011-03-14 11:43:15 +0000
commit5a72a15010aea8197907663aca25a0ea716f1804 (patch)
tree53c12f80dab384c8bb8eb5806907b842efb87015
parent5bc69e976ef20a9bd2a53c92a134ec342ab443ce (diff)
downloadrabbitmq-server-git-5a72a15010aea8197907663aca25a0ea716f1804.tar.gz
I think this makes it more comprehensible. To me at least.
-rw-r--r--src/rabbit_backing_queue.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rabbit_backing_queue.erl b/src/rabbit_backing_queue.erl
index 7385079327..7823a53c69 100644
--- a/src/rabbit_backing_queue.erl
+++ b/src/rabbit_backing_queue.erl
@@ -39,8 +39,9 @@ behaviour_info(callbacks) ->
%% 2. a boolean indicating whether the queue is durable
%% 3. a boolean indicating whether the queue is an existing queue
%% that should be recovered
- %% 4. an asynchronous callback which can be invoked by the
- %% backing queue when an event has occured that requires a
+ %% 4. an asynchronous callback which can be passed by the
+ %% backing queue to other processes which need to call back
+ %% into it when an event has occured that requires a
%% state transition. The callback accepts a function from
%% state to state.
%% 5. a synchronous callback. Same as the asynchronous callback