https://github.com/apache/qpid-cpp
Mirror of Apache Qpid C++
https://github.com/apache/qpid-cpp
amqp amqp10 amqps apache cpp messaging network-client network-server qpid
Last synced: about 2 months ago
JSON representation
Mirror of Apache Qpid C++
- Host: GitHub
- URL: https://github.com/apache/qpid-cpp
- Owner: apache
- License: apache-2.0
- Created: 2016-07-06T07:00:07.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T19:18:26.000Z (10 months ago)
- Last Synced: 2025-04-03T04:17:05.289Z (2 months ago)
- Topics: amqp, amqp10, amqps, apache, cpp, messaging, network-client, network-server, qpid
- Language: C++
- Homepage: https://qpid.apache.org/components/cpp-broker
- Size: 14.4 MB
- Stars: 94
- Watchers: 18
- Forks: 74
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Qpid C++
[](https://builds.apache.org/blue/organizations/jenkins/Qpid%2FQpid-CPP-Test/activity) [](https://ci.appveyor.com/project/ApacheSoftwareFoundation/qpid-cpp/branch/main)
## Introduction
Qpid C++ is a C++ implementation of the AMQP protocol described at
.For additional software or information on the Qpid project go to:
>
For documentation, go to:
>
## 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 daemonThe INSTALL.txt notes contain more detailed information on compiling
and installing this software.examples/README.txt describes the C++ client API examples.