Merge pull request #488 from itrofimow/amqpcpp_473

feat README: add a note about implied noexcept for ConnectionHandler
This commit is contained in:
Emiel Bruijntjes 2022-12-31 09:41:15 +01:00 committed by GitHub
commit d8ea41ae37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -295,6 +295,9 @@ However, this is not strictly necessary. Methods called during a handshake
are cached by the AMQP library, and will be executed the moment the handshake
is completed and the connection becomes ready for use.
And the last but not least: even though `ConnectionHandler` methods are not
marked `noexcept` explicitly, you are not expected to throw from them, and
the behaviour is undefined if you do so.
PARSING INCOMING DATA
=====================