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 BE2CA200BE5 for ; Sat, 10 Dec 2016 01:05:05 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id BCFB8160B2A; Sat, 10 Dec 2016 00:05:05 +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 81399160B3B for ; Sat, 10 Dec 2016 01:05:01 +0100 (CET) Received: (qmail 39859 invoked by uid 500); 10 Dec 2016 00:05:00 -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 38568 invoked by uid 99); 10 Dec 2016 00:04:59 -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; Sat, 10 Dec 2016 00:04:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E2A0AE040F; Sat, 10 Dec 2016 00:04:58 +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: Sat, 10 Dec 2016 00:05:16 -0000 Message-Id: <82c4fb665c004935bac959ed27bec687@git.apache.org> In-Reply-To: <07989034afce48148f1b879308f8f61f@git.apache.org> References: <07989034afce48148f1b879308f8f61f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [19/51] [partial] qpid-site git commit: QPID-7553: Clear out extra output files; regenerate proton master docs; remove image files we don't use archived-at: Sat, 10 Dec 2016 00:05:05 -0000 http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.html deleted file mode 100755 index aa5db14..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.html +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - -Qpid Proton C++ API: handler - - - - - - - - - - - - - - - -
-
- - - - - - - -
-
Qpid Proton C++ API -  master -
-
- - - - - - -
-
-
- - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
handler
-
-
- -

Callback functions for handling proton events. - More...

- -

#include <handler.hpp>

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

Event callbacks

Override these member functions to handle events.

-
-virtual void on_container_start (container &c)
 The event loop is starting.
 
-virtual void on_message (delivery &d, message &m)
 A message is received.
 
-virtual void on_sendable (sender &s)
 A message can be sent.
 
virtual void on_transport_close (transport &t)
 transport_open is not present because currently there is no specific low level event to hang it from - you should put any initialisation code that needs a transport into the conection_open event. More...
 
virtual void on_transport_error (transport &t)
 The underlying network transport has closed with an error condition. More...
 
virtual void on_connection_open (connection &c)
 Note that every ..._open event is paired with a ..._close event which can clean up any resources created by the ..._open handler. More...
 
-virtual void on_connection_close (connection &c)
 The remote peer closed the connection.
 
-virtual void on_connection_error (connection &c)
 The remote peer closed the connection with an error condition.
 
-virtual void on_session_open (session &s)
 The remote peer opened the session.
 
-virtual void on_session_close (session &s)
 The remote peer closed the session.
 
-virtual void on_session_error (session &s)
 The remote peer closed the session with an error condition.
 
-virtual void on_receiver_open (receiver &l)
 The remote peer opened the link.
 
-virtual void on_receiver_close (receiver &l)
 The remote peer closed the link.
 
-virtual void on_receiver_error (receiver &l)
 The remote peer closed the link with an error condition.
 
-virtual void on_sender_open (sender &l)
 The remote peer opened the link.
 
-virtual void on_sender_close (sender &l)
 The remote peer closed the link.
 
-virtual void on_sender_error (sender &l)
 The remote peer closed the link with an error condition.
 
-virtual void on_delivery_accept (delivery &d)
 The remote peer accepted an outgoing message.
 
-virtual void on_delivery_reject (delivery &d)
 The remote peer rejected an outgoing message.
 
-virtual void on_delivery_release (delivery &d)
 The remote peer released an outgoing message.
 
-virtual void on_delivery_settle (delivery &d)
 The remote peer settled an outgoing message.
 
-virtual void on_unhandled_error (const condition &c)
 Fallback error handling.
 
-

Detailed Description

-

Callback functions for handling proton events.

-

Subclass and override event-handling member functions.

-
See also
proton::event
-

Member Function Documentation

- -
-
- - - - - -
- - - - - - - - -
virtual void on_connection_open (connectionc)
-
-virtual
-
- -

Note that every ..._open event is paired with a ..._close event which can clean up any resources created by the ..._open handler.

-

In particular this is still true if an error is reported with an ..._error event. This makes resource management easier so that the error handling logic doesn't also have to manage the resource clean up, but can just assume that the close event will be along in a minute to handle the clean up. The remote peer opened the connection.

- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void on_transport_close (transport & t)
-
-virtual
-
- -

transport_open is not present because currently there is no specific low level event to hang it from - you should put any initialisation code that needs a transport into the conection_open event.

-

XXX Actually this makes me wonder if we shouldn't just introduce this event XXX and call its handler immediately before on_connection_open, just for the XXX symmetry of the API. The underlying network transport has closed.

- -
-
- -
-
- - - - - -
- - - - - - - - -
virtual void on_transport_error (transport & t)
-
-virtual
-
- -

The underlying network transport has closed with an error condition.

- -
-
-
The documentation for this class was generated from the following file: -
-
- - - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.js deleted file mode 100755 index bc38c95..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler.js +++ /dev/null @@ -1,27 +0,0 @@ -var classproton_1_1handler = -[ - [ "handler", "classproton_1_1handler.html#a501269111e2ae6a7d2af12117a6e84c0", null ], - [ "~handler", "classproton_1_1handler.html#a7bc501eb65f4d895e716a2f81c09e617", null ], - [ "on_connection_close", "classproton_1_1handler.html#a804f0ea9c2754f143624b4078a61f650", null ], - [ "on_connection_error", "classproton_1_1handler.html#aafa83dc2f8f477ba1f76e86dc69cd1e9", null ], - [ "on_connection_open", "classproton_1_1handler.html#a16ba022e899957b2e25b9561b1f53968", null ], - [ "on_container_start", "classproton_1_1handler.html#a4949b0c93402fae0c07492d984688a25", null ], - [ "on_delivery_accept", "classproton_1_1handler.html#a7dd4db2d94ff7493e172aaa0a516ea12", null ], - [ "on_delivery_reject", "classproton_1_1handler.html#aa9bb667a0dd8cbe7a0b22323bdf706fd", null ], - [ "on_delivery_release", "classproton_1_1handler.html#aa285c53270943fd19df10b62d7f92130", null ], - [ "on_delivery_settle", "classproton_1_1handler.html#afc96eabc76c471d61627493eadb58ac8", null ], - [ "on_message", "classproton_1_1handler.html#a96879b0b0b7ade11f98d3f450abd4c46", null ], - [ "on_receiver_close", "classproton_1_1handler.html#a77ac5c1fd05404728451cd06dee1c907", null ], - [ "on_receiver_error", "classproton_1_1handler.html#a0c281aee5483822bdf4b428834bd7f28", null ], - [ "on_receiver_open", "classproton_1_1handler.html#a768b0a50669aa1d512d12e9d68af14cd", null ], - [ "on_sendable", "classproton_1_1handler.html#aa24f522a68cdf382762702cece7790e7", null ], - [ "on_sender_close", "classproton_1_1handler.html#a7942b98699bd21e827041626ee1b5c84", null ], - [ "on_sender_error", "classproton_1_1handler.html#a2d9d98eee878f1e734457ba01e21228a", null ], - [ "on_sender_open", "classproton_1_1handler.html#a0b5d066e5463d3365f662c8a7dc52661", null ], - [ "on_session_close", "classproton_1_1handler.html#a54fe4fc5394418f8606f9263f13d2e98", null ], - [ "on_session_error", "classproton_1_1handler.html#aca924d2f68649df7945719be3d29a597", null ], - [ "on_session_open", "classproton_1_1handler.html#adddbfd9b7fc7719490bdc21331c42302", null ], - [ "on_transport_close", "classproton_1_1handler.html#a47c33c5e6c13d23f1b8a745bf7bdfa8f", null ], - [ "on_transport_error", "classproton_1_1handler.html#af89551ce0e44ae3465d4b078f1c87653", null ], - [ "on_unhandled_error", "classproton_1_1handler.html#ae4aed3af3c63842de90297f851ac7d2a", null ] -]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.map b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.map deleted file mode 100755 index c6949be..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.md5 b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.md5 deleted file mode 100755 index eb1293f..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -783135f956bdcc0b58a4fb9af909b1f6 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.png b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.png deleted file mode 100755 index 60f67e0..0000000 Binary files a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__coll__graph.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.map ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.map b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.map deleted file mode 100755 index fcbd46c..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.md5 ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.md5 b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.md5 deleted file mode 100755 index f6a8a28..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -376c99f7cb5820ec5f7157ca7688ab8a \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.png b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.png deleted file mode 100755 index 88f123a..0000000 Binary files a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1handler__inherit__graph.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler-members.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler-members.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler-members.html deleted file mode 100755 index 829364d..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler-members.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - -Qpid Proton C++ API: Member List - - - - - - - - - - - - - - - -
-
- - - - - - - -
-
Qpid Proton C++ API -  master -
-
- - - - - - -
-
-
- - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
inject_handler Member List
-
-
- -

This is the complete list of members for inject_handler, including all inherited members.

- - - - - -
on_inject()=0 (defined in inject_handler)inject_handlerpure virtual
operator()()inject_handlerinlinevirtual
~inject_handler() (defined in inject_handler)inject_handlerinlinevirtual
~void_function0() (defined in void_function0)void_function0inlinevirtual
-
- - - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.html deleted file mode 100755 index df920f0..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - -Qpid Proton C++ API: inject_handler - - - - - - - - - - - - - - - -
-
- - - - - - - -
-
Qpid Proton C++ API -  master -
-
- - - - - - -
-
-
- - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
inject_handlerabstract
-
-
- -

Experimental - A handler for injected code. - More...

- -

#include <event_loop.hpp>

-
-Inheritance diagram for inject_handler:
-
-
- - -void_function0 - -
- - - - - - - -

-Public Member Functions

-virtual void on_inject ()=0
 
-void operator() ()
 Override the call operator with your code.
 
-

Detailed Description

-

Experimental - A handler for injected code.

-
Deprecated:
use void_function0.
-

The documentation for this class was generated from the following file: -
-
- - - - http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.js deleted file mode 100755 index 95452a9..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.js +++ /dev/null @@ -1,6 +0,0 @@ -var classproton_1_1inject__handler = -[ - [ "~inject_handler", "classproton_1_1inject__handler.html#a5586d9fb6f94c6763102fc911b2f7e47", null ], - [ "on_inject", "classproton_1_1inject__handler.html#a9edc8a337487cf4ddb601a55f37c324a", null ], - [ "operator()", "classproton_1_1inject__handler.html#a5ccbdeb5350ba8528eab7e4cc49fc68b", null ] -]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.png ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.png b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.png deleted file mode 100755 index 1150dcd..0000000 Binary files a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1inject__handler.png and /dev/null differ http://git-wip-us.apache.org/repos/asf/qpid-site/blob/27c60c33/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1io_1_1connection__engine-members.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1io_1_1connection__engine-members.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1io_1_1connection__engine-members.html deleted file mode 100755 index ac0981b..0000000 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1io_1_1connection__engine-members.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - -Qpid Proton C++ API: Member List - - - - - - - - - - - - - - - -
-
- - - - - - - -
-
Qpid Proton C++ API -  master -
-
- - - - - - -
-
-
- - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
connection_engine Member List
-
-
- -

This is the complete list of members for connection_engine, including all inherited members.

- - - - - - - - - - - - - - - - - - -
accept(const connection_options &opts)connection_engine
configure(const connection_options &opts=connection_options())connection_engine
connect(const connection_options &opts)connection_engine
connection() const connection_engine
connection_engine()connection_engine
connection_engine(proton::container &, event_loop *loop=0)connection_engine
container() const connection_engine
disconnected(const error_condition &=error_condition())connection_engine
dispatch()connection_engine
read_buffer()connection_engine
read_close()connection_engine
read_done(size_t n)connection_engine
transport() const connection_engine
write_buffer()connection_engine
write_close()connection_engine
write_done(size_t n)connection_engine
~connection_engine() (defined in connection_engine)connection_engine
-
- - - - --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org