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
commit09da0e495c4b327511c8cdbc763787fc409bcb81 (patch)
tree53c12f80dab384c8bb8eb5806907b842efb87015
parent8492c18d696b0d4b384bfdc381d006e421351658 (diff)
downloadrabbitmq-server-09da0e495c4b327511c8cdbc763787fc409bcb81.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 73850793..7823a53c 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