GitHub
github.com › apache › qpid-proton › blob › main › c › docs › logging.md
qpid-proton/c/docs/logging.md at main · apache/qpid-proton
The @ref logger API uses a single environment variable to control the default logging state - PN_LOG.
Author apache
Apache Qpid
qpid.apache.org › releases › qpid-cpp-1.39.0 › messaging-api › book › ch01s15.html
1.15. Logging - Apache Qpid™
Use QPID_LOG_ENABLE to set the level of logging you are interested in (trace, debug, info, notice, warning, error, or critical):
Apache
cwiki.apache.org › confluence › display › qpid › Proton+Logging
Proton Logging - Apache Qpid - Apache Software Foundation
June 25, 2013 - This page describes a proposed approach to Proton logging.
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.39.0 › proton › c › api › logging.html
Qpid Proton C API: Logging
The Logger API uses a single environment variable to control the default logging state - PN_LOG.
PyPI
pypi.org › project › python-qpid-proton
python-qpid-proton
JavaScript is disabled in your browser. Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.40.0 › proton › python › docs › overview.html
API Overview — Qpid Proton Python API 0.40.0 documentation
Qpid Proton Python API 0.40.0 documentation » · API Overview · Messages are transferred between connected peers over ‘links’. At the sending peer the link is called a sender. At the receiving peer it is called a receiver. Messages are sent by senders and received by receivers.
Apache Qpid
qpid.apache.org › releases › qpid-python-1.37.0 › messaging-api › examples › server.html
server - Apache Qpid™
import optparse, sys, traceback from qpid.messaging import * from qpid.util import URL from subprocess import Popen, STDOUT, PIPE from qpid.log import enable, DEBUG, WARN parser = optparse.OptionParser(usage="usage: %prog [options] ADDRESS ...", description="handle requests from the supplied address.") parser.add_option("-b", "--broker", default="localhost", help="connect to specified BROKER (default �fault)") parser.add_option("-r", "--reconnect", action="store_true", help="enable auto reconnect") parser.add_option("-i", "--reconnect-interval", type="float", default=3, help="interval betwee
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.37.0 › proton › python › docs › tutorial.html
Tutorial — Qpid Proton Python API 0.37.0 documentation
Now that we have defined the logic for handling these events, we create an instance of a Container, pass it our handler and then enter the event loop by calling run(). At this point, control passes to the container instance, which will make the appropriate callbacks to any defined handlers. To run the example, you will need to have a broker (or similar) accepting connections on that url either with a queue (or topic) matching the given address or else configured to create such a queue (or topic) dynamically.
GitHub
github.com › nuagenetworks › AMQP-Client › blob › master › amqpClient.py
AMQP-Client/amqpClient.py at master · nuagenetworks/AMQP-Client
#Usage: python amqpClienty.py -c[for cluster mode] -d[for durable subscription] -v[verbose mode] -i <client Id> -p <property file to use>[properties file to use] -f <log file for output>[log file location]
Author nuagenetworks
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.39.0 › proton › python › docs › overview.html
API Overview — Qpid Proton Python API 0.39.0 documentation
Qpid Proton Python API 0.39.0 documentation » · API Overview · Messages are transferred between connected peers over ‘links’. At the sending peer the link is called a sender. At the receiving peer it is called a receiver. Messages are sent by senders and received by receivers.
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.40.0 › proton › python › docs › tutorial.html
Tutorial — Qpid Proton Python API 0.40.0 documentation
Now that we have defined the logic for handling these events, we create an instance of a Container, pass it our handler and then enter the event loop by calling run(). At this point, control passes to the container instance, which will make the appropriate callbacks to any defined handlers. To run the example, you will need to have a broker (or similar) accepting connections on that url either with a queue (or topic) matching the given address or else configured ...
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.38.0 › proton › python › docs › overview.html
API Overview — Qpid Proton Python API 0.38.0 documentation
Qpid Proton Python API 0.38.0 documentation » · API Overview · Messages are transferred between connected peers over ‘links’. At the sending peer the link is called a sender. At the receiving peer it is called a receiver. Messages are sent by senders and received by receivers.
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.36.0 › proton › python › docs › tutorial.html
Tutorial — Qpid Proton Python API 0.36.0 documentation
Now that we have defined the logic for handling these events, we create an instance of a Container, pass it our handler and then enter the event loop by calling run(). At this point, control passes to the container instance, which will make the appropriate callbacks to any defined handlers. To run the example, you will need to have a broker (or similar) accepting connections on that url either with a queue (or topic) matching the given address or else configured to create such a queue (or topic) dynamically.
GitHub
github.com › apache › qpid-proton › blob › main › python › proton › _reactor.py
qpid-proton/python/proton/_reactor.py at main · apache/qpid-proton
Mirror of Apache Qpid Proton. Contribute to apache/qpid-proton development by creating an account on GitHub.
Author apache
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.40.0 › proton › python › docs › index.html
Qpid Proton Python API Documentation — Qpid Proton Python API 0.40.0 documentation
The Qpid Python client API and library allows applications to send and receive AMQP messages. See API Overview for a more detailed explanation. Messages are transferred between connected peers (or nodes) using senders and receivers. Each sender or receiver is established over a connection. Each connection is established between two unique containers, the entry point for the API. The container class proton...
Red Hat
docs.redhat.com › en › documentation › red_hat_build_of_apache_qpid_proton_python › 0.40 › html › using_qpid_python › examples
Chapter 4. Examples | Using Qpid Python | Red Hat build of Apache Qpid Proton Python | 0.40 | Red Hat Documentation
To run the example program, copy it to a local file and invoke it using the python command. For more information, see Chapter 3, Getting started. ... This client program connects to a server using <connection-url>, creates a receiver for source <address>, and receives messages until it is terminated or it reaches <count> messages. ... from __future__ import print_function import sys from proton.handlers import MessagingHandler from proton.reactor import Container class ReceiveHandler(MessagingHandler): def __init__(self, conn_url, address, desired): super(ReceiveHandler, self).__init__() self.
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.36.0 › proton › python › docs › _modules › proton › _transport.html
proton._transport — Qpid Proton Python API 0.36.0 documentation
When using the Windows SChannel implementation the default will be the users default trusted certificate store. :param certificate_db: Database of trusted CAs, used to authenticate the peer. :return: 0 on success :raise: :exc:`SSLException` if there is any Proton error """ return self._check(pn_ssl_domain_set_trusted_ca_db(self._domain, certificate_db))
Apache Qpid
qpid.apache.org › releases › qpid-python-1.37.0 › messaging-api › examples › drain.html
drain - Apache Qpid™
import optparse from qpid.messaging import * from qpid.util import URL from qpid.log import enable, DEBUG, WARN parser = optparse.OptionParser(usage="usage: %prog [options] ADDRESS ...", description="Drain messages from the supplied address.") parser.add_option("-b", "--broker", default="localhost", help="connect to specified BROKER (default �fault)") parser.add_option("-c", "--count", type="int", help="number of messages to drain") parser.add_option("-f", "--forever", action="store_true", help="ignore timeout and wait forever") parser.add_option("-r", "--reconnect", action="store_true", hel
Apache Qpid
qpid.apache.org › releases › qpid-proton-0.40.0 › proton › python › docs › proton.html
Module proton — Qpid Proton Python API 0.40.0 documentation
NOTE: Some AMQP types are represented by native Python types. This table contains only classes for non-native Python types defined in this module. See AMQP Types for a full list of AMQP types. class proton.AnnotationDict(e: Dict | List | Tuple | Iterable | None = None, raise_on_error: bool ...