diff options
| author | Matthias Radestock <matthias@lshift.net> | 2010-05-02 13:24:24 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2010-05-02 13:24:24 +0100 |
| commit | 835f6480f5f0c00c60c056807e4ea0c29eda8159 (patch) | |
| tree | f5e5d93fd6eab1418d8b065e1f015d52817aba9a | |
| parent | efd50fbde7bdf15655325bd0fbdb5da2d189e020 (diff) | |
| download | rabbitmq-server-git-835f6480f5f0c00c60c056807e4ea0c29eda8159.tar.gz | |
correct backing_queue:tx_{commit,rollback} descriptions
| -rw-r--r-- | src/rabbit_backing_queue.erl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/rabbit_backing_queue.erl b/src/rabbit_backing_queue.erl index 38bee4663b..583cd4da27 100644 --- a/src/rabbit_backing_queue.erl +++ b/src/rabbit_backing_queue.erl @@ -77,14 +77,12 @@ behaviour_info(callbacks) -> %% Acks, but in the context of a transaction. {tx_ack, 3}, - %% Undo anything which has been done by the tx_publish of the - %% indicated messages. + %% Undo anything which has been done in the context of the + %% specified transaction. {tx_rollback, 2}, - %% Commit these publishes and acktags. The publishes you will - %% have previously seen in calls to tx_publish, and the acks in - %% calls to tx_ack. The Fun passed in must be called once the - %% messages have really been commited. This CPS permits the + %% Commit a transaction. The Fun passed in must be called once + %% the messages have really been commited. This CPS permits the %% possibility of commit coalescing. {tx_commit, 3}, |
