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 <[email protected]> Authored: Fri Jan 29 10:37:48 2016 -0500 Committer: Clifford Jansen <[email protected]> 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<pn_link_t> , 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<pn_link_t> , 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<pn_link_t> , 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: [email protected] For additional commands, e-mail: [email protected]
