diff options
| author | Gordon Sim <gsim@apache.org> | 2010-07-08 09:32:42 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-07-08 09:32:42 +0000 |
| commit | ebb1a6b84e111f5ac0f1f29290320a7c44ed4714 (patch) | |
| tree | 64dd8b7a0912d057af82bc49d9ad0d2a4a8095a8 | |
| parent | 610df8ecf1656a9e7dbb3c2fa103e43b305a189a (diff) | |
| download | qpid-python-ebb1a6b84e111f5ac0f1f29290320a7c44ed4714.tar.gz | |
Mentioned setting type on reply-to addresses in performance tips
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@961677 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | doc/book/src/Programming-In-Apache-Qpid.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/book/src/Programming-In-Apache-Qpid.xml b/doc/book/src/Programming-In-Apache-Qpid.xml index e5ddca1d7a..a5a846152c 100644 --- a/doc/book/src/Programming-In-Apache-Qpid.xml +++ b/doc/book/src/Programming-In-Apache-Qpid.xml @@ -2075,6 +2075,14 @@ std::cout << request.getContent() << " -> " << response.getContent() << std::end sender may block waiting for the broker to confirm receipt of messages, before it can free up more capacity.</para> </listitem> + <listitem> + <para>If you are setting a reply-to address on messages + being sent by the c++ client, make sure the address type is + set to either queue or topic as appropriate. This avoids the + client having to determine which type of node is being + refered to, which is required when hanling reply-to in AMQP + 0-10. </para> + </listitem> </itemizedlist> </section> |
