Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2C3A3173E4 for ; Fri, 29 Jan 2016 15:39:24 +0000 (UTC) Received: (qmail 71430 invoked by uid 500); 29 Jan 2016 15:38:26 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 71401 invoked by uid 500); 29 Jan 2016 15:38:26 -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 71392 invoked by uid 99); 29 Jan 2016 15:38:25 -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; Fri, 29 Jan 2016 15:38:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C2274E006B; Fri, 29 Jan 2016 15:38:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cliffjansen@apache.org To: commits@qpid.apache.org Message-Id: <2926b33923d14c4888e6eeb87b4192f7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: qpid-proton git commit: PROTON-1117: improve the related documentation Date: Fri, 29 Jan 2016 15:38:25 +0000 (UTC) Repository: qpid-proton Updated Branches: refs/heads/master f1b9d008a -> 35c9c5232 PROTON-1117: improve the related documentation Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/35c9c523 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/35c9c523 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/35c9c523 Branch: refs/heads/master Commit: 35c9c5232c79615bb2eb74dfbaaf5b09163fee0c Parents: f1b9d00 Author: Clifford Jansen Authored: Fri Jan 29 10:37:48 2016 -0500 Committer: Clifford Jansen Committed: Fri Jan 29 10:37:48 2016 -0500 ---------------------------------------------------------------------- proton-c/bindings/cpp/include/proton/link.hpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/35c9c523/proton-c/bindings/cpp/include/proton/link.hpp ---------------------------------------------------------------------- diff --git a/proton-c/bindings/cpp/include/proton/link.hpp b/proton-c/bindings/cpp/include/proton/link.hpp index 13b965e..7e86af5 100644 --- a/proton-c/bindings/cpp/include/proton/link.hpp +++ b/proton-c/bindings/cpp/include/proton/link.hpp @@ -64,7 +64,8 @@ class link : public object , public endpoint { /// Suspend the link without closing it. A suspended link may be /// reopened with the same or different link options if supported by - /// the peer. + /// the peer. A suspended durable subscriptions becomes inactive + /// without cancelling it. PN_CPP_EXTERN void detach(); /// Return sender if this link is a sender, 0 if not. @@ -98,13 +99,13 @@ class link : public object , public endpoint { /// Local source of the link. PN_CPP_EXTERN terminus local_source() const; - + /// Local target of the link. PN_CPP_EXTERN terminus local_target() const; - + /// Remote source of the link. PN_CPP_EXTERN terminus remote_source() const; - + /// Remote target of the link. PN_CPP_EXTERN terminus remote_target() const; @@ -119,7 +120,7 @@ class link : public object , public endpoint { /// @cond INTERNAL /// XXX settle open questions - + /// Set a custom handler for this link. PN_CPP_EXTERN void handler(proton_handler &); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org