better comment for the channel::consume() call, the comment about the consumer tag was wrong (fixes #211)

This commit is contained in:
Emiel Bruijntjes 2018-04-19 09:56:35 +02:00
parent ce5ba55b01
commit d857fbafde
1 changed files with 3 additions and 4 deletions

View File

@ -400,10 +400,9 @@ public:
* Tell the RabbitMQ server that we're ready to consume messages * Tell the RabbitMQ server that we're ready to consume messages
* *
* After this method is called, RabbitMQ starts delivering messages to the client * After this method is called, RabbitMQ starts delivering messages to the client
* application. The consume tag is a string identifier that will be passed to * application. The consume tag is a string identifier that you can use to identify
* each received message, so that you can associate incoming messages with a * the consumer if you later want to stop it with with a channel::cancel() call.
* consumer. If you do not specify a consumer tag, the server will assign one * If you do not specify a consumer tag, the server will assign one for you.
* for you.
* *
* The following flags are supported: * The following flags are supported:
* *