Mirror of Apache Qpid C++

Clone this repo:
  1. 62aaa4c NO-JIRA: fix Python 2.7 CI jobs after actions/setup-python removed this version by Jiri Daněk · 7 months ago main
  2. 5573c89 QPID-8631: fill_in python 3 incompatibilities in qmf/console.py by Jiri Daněk · 1 year ago
  3. 1077fe6 QPID-8605: silence the boost bind global placeholders warning (#41) by Jiri Daněk · 1 year ago
  4. 4b1afd9 QPID-8635: test with Python 3.8, use qpid-python main by Jiri Daněk · 1 year ago
  5. dd442da QPID-8635: Python 3 uses __pycache__ subdirectory for compiled bytecode by Jiri Daněk · 1 year ago

Qpid C++

Linux build status Windows build status

Introduction

Qpid C++ is a C++ implementation of the AMQP protocol described at http://amqp.org/.

For additional software or information on the Qpid project go to:

http://qpid.apache.org

For documentation, go to:

http://qpid.apache.org/documentation

Available documentation

  • INSTALL.txt - How to install Qpid C++
  • LICENSE.txt - The Apache license
  • NOTICE.txt - Corresponds to the section 4 d of the Apache License, Version 2.0
  • docs/ - Feature and design notes, other documentation

Quick start

In C++ distributions:

mkdir BLD      # The recommended way to use cmake is in a separate
               # build directory
cd BLD
cmake ..       # Generates code and makefiles
make test      # Runs tests
make install   # Installs the client and daemon

The INSTALL.txt notes contain more detailed information on compiling and installing this software.

examples/README.txt describes the C++ client API examples.