diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2011-03-14 11:51:26 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2011-03-14 11:51:26 +0000 |
| commit | 71a642331c10f4d4bce0862859e030d3623ffe97 (patch) | |
| tree | 2e56f767f6a168d5faf58f1310ebf94649f80302 | |
| parent | 5a72a15010aea8197907663aca25a0ea716f1804 (diff) | |
| download | rabbitmq-server-git-71a642331c10f4d4bce0862859e030d3623ffe97.tar.gz | |
I didn't think that implied that it could *only* be used out of process, but let's make it clearer.
| -rw-r--r-- | src/rabbit_backing_queue.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_backing_queue.erl b/src/rabbit_backing_queue.erl index 7823a53c69..29d9331b83 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}, |
