Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A6366200B81 for ; Tue, 30 Aug 2016 01:09:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A4841160AE5; Mon, 29 Aug 2016 23:09:26 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5C680160AC9 for ; Tue, 30 Aug 2016 01:09:25 +0200 (CEST) Received: (qmail 52724 invoked by uid 500); 29 Aug 2016 23:09:24 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 52582 invoked by uid 99); 29 Aug 2016 23:09:24 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Aug 2016 23:09:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 48404E0BDC; Mon, 29 Aug 2016 23:09:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jross@apache.org To: commits@qpid.apache.org Date: Mon, 29 Aug 2016 23:09:28 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [05/47] qpid-site git commit: QPID-7354: Update the site for the qpid python 1.35.0 release archived-at: Mon, 29 Aug 2016 23:09:26 -0000 http://git-wip-us.apache.org/repos/asf/qpid-site/blob/88dd2aa4/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.message.Message-class.html ---------------------------------------------------------------------- diff --git a/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.message.Message-class.html b/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.message.Message-class.html new file mode 100644 index 0000000..8325b2a --- /dev/null +++ b/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.message.Message-class.html @@ -0,0 +1,315 @@ + + + + + qpid.messaging.message.Message + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Package qpid :: + Package messaging :: + Module message :: + Class Message + + + + + +
[frames] | no frames]
+
+ +

Class Message

source code

+

A message consists of a standard set of fields, an application defined + set of properties, and some content.

+ + + + + + + + + + + + + +
+ Instance Methods
+   + + + + + + +
__init__(self, + content=None, + content_type=UNSPECIFIED, + id=None, + subject=None, + user_id=None, + reply_to=None, + correlation_id=None, + durable=None, + priority=None, + ttl=None, + properties=None)
+ Construct a new message with the supplied content.
+ source code + +
+ +
+   + + + + + + +
__repr__(self) + source code + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Instance Variables
+ str, unicode, buffer, dict, list + + content
+ the message content +
+ str + + content_type
+ the content-type of the message +
+ str + + correlation_id
+ a correlation-id for the message +
+ bool + + durable
+ message durability +
+ str + + id
+ the message id +
+ int + + priority
+ message priority +
+ dict + + properties
+ application specific message properties +
+ str + + reply_to
+ the address to send replies +
+ str + + subject
+ message subject +
+ float + + ttl
+ time-to-live measured in seconds +
+ str + + user_id
+ the user-id of the message producer +
+ + + + + + +
+ Method Details
+ +
+ +
+ + +
+

__init__(self, + content=None, + content_type=UNSPECIFIED, + id=None, + subject=None, + user_id=None, + reply_to=None, + correlation_id=None, + durable=None, + priority=None, + ttl=None, + properties=None) +
(Constructor) +

+
source code  +
+ +

Construct a new message with the supplied content. The content-type of + the message will be automatically inferred from type of the content + parameter.

+
+
Parameters:
+
    +
  • content (str, unicode, buffer, dict, list) - the message content
  • +
  • content_type (str) - the content-type of the message
  • +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + http://git-wip-us.apache.org/repos/asf/qpid-site/blob/88dd2aa4/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.transports-module.html ---------------------------------------------------------------------- diff --git a/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.transports-module.html b/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.transports-module.html new file mode 100644 index 0000000..8f8014e --- /dev/null +++ b/input/releases/qpid-python-1.35.0/messaging-api/api/qpid.messaging.transports-module.html @@ -0,0 +1,199 @@ + + + + + qpid.messaging.transports + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Package qpid :: + Package messaging :: + Module transports + + + + + +
[frames] | no frames]
+
+ +

Module transports

source code

+ + + + + + + + + + + + + + + + + + +
+ Classes
+   + + SocketTransport +
+   + + tcp +
+   + + old_ssl +
+   + + tls +
+ + + + + + + + + +
+ Functions
+   + + + + + + +
verify_hostname(peer_certificate, + hostname) + source code + +
+ +
+ + + + + + + + + + + + +
+ Variables
+   + + TRANSPORTS = {} +
+   + + __package__ = 'qpid.messaging' +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org