commit | 0217dc472986b1290ba92db59a2d5f130bf82f5e | [log] [tgz] |
---|---|---|
author | Andrew Stitcher <astitcher@apache.org> | Mon Apr 05 17:29:16 2021 -0400 |
committer | Andrew Stitcher <astitcher@apache.org> | Mon Apr 05 17:29:16 2021 -0400 |
tree | 8f2600ef727df0a5aa7df1ee458b9ffda817879c | |
parent | 9bf7b7078d511b4fb51a5522a106b56c88db3740 [diff] |
PROTON-2354: Fix to the new destructors that works with C++03 We do still support C++03 and the previous fix had the wrong exception specification for pre C++11 destructors: The base exception (std::runtime_error) is specified to not throw any exeptions so we need to specify the new destructors the same way. C++11 defaults to non throwing destructors so omitting the exception specification works there. However earlier C++ doesn't default like this and so we need to do this explicitly for C++03. The explicit specification works fine for C++11 as it doesn't actually change anything there.
Linux/OSX Build | Windows Build |
---|---|
Qpid Proton is a high-performance, lightweight messaging library. It can be used in the widest range of messaging applications, including brokers, client libraries, routers, bridges, proxies, and more. Proton makes it trivial to integrate with the AMQP 1.0 ecosystem from any platform, environment, or language.
Universal - Proton is designed to scale both up and down. Equally suitable for simple clients or high-powered servers, it can be deployed in simple peer-to-peer configurations or as part of a global federated messaging network.
Embeddable - Proton is carefully written to be portable and cross platform. It has minimal dependencies, and it is architected to be usable with any threading model, as well as with non-threaded applications. These features make it uniquely suited for embedding messaging capabilities into existing software.
Standard - Built around the AMQP 1.0 messaging standard, Proton is not only ideal for building out your own messaging applications but also for connecting them to the broader ecosystem of AMQP 1.0-based messaging applications.
Please see https://qpid.apache.org/proton for more information.
See the included INSTALL.md file for build and install instructions and the developers.md file for information on how to modify and test the library code itself.