summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2011-03-14 11:51:26 +0000
committerSimon MacMullen <simon@rabbitmq.com>2011-03-14 11:51:26 +0000
commit802d609c24e331f641e7afe7577676f88c22c46a (patch)
tree2e56f767f6a168d5faf58f1310ebf94649f80302
parent09da0e495c4b327511c8cdbc763787fc409bcb81 (diff)
downloadrabbitmq-server-bug23882.tar.gz
I didn't think that implied that it could *only* be used out of process, but let's make it clearer.bug23882
-rw-r--r--src/rabbit_backing_queue.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_backing_queue.erl b/src/rabbit_backing_queue.erl
index 7823a53c..29d9331b 100644
--- a/src/rabbit_backing_queue.erl
+++ b/src/rabbit_backing_queue.erl
@@ -42,8 +42,8 @@ behaviour_info(callbacks) ->
%% 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.
+ %% state transition. Note that it can also be used in process.
+ %% The callback accepts a function from state to state.
%% 5. a synchronous callback. Same as the asynchronous callback
%% but waits for completion and returns 'error' on error.
{init, 5},