http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.html index 75f1f3c..79ce090 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.html @@ -130,7 +130,6 @@ void </td><td class="memItemRight" valign="bottom"><a class="el" href="clas <tr class="memdesc:a9b9ad83418de47f87c6c7062eaefb5b6"><td class="mdescLeft"> </td><td class="mdescRight">Enable or disable automatic acceptance of messages that aren't otherwise released, rejected, or modified. <a href="#a9b9ad83418de47f87c6c7062eaefb5b6">More...</a><br /></td></tr> <tr class="separator:a9b9ad83418de47f87c6c7062eaefb5b6"><td class="memSeparator" colspan="2"> </td></tr> <tr class="memitem:af313abfa8d5b19e4b61c779907eb9980"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classproton_1_1receiver__options.html">receiver_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1receiver__options.html#af313abfa8d5b19e4b61c779907eb9980">auto_settle</a> (bool)</td></tr> -<tr class="memdesc:af313abfa8d5b19e4b61c779907eb9980"><td class="mdescLeft"> </td><td class="mdescRight">Enable or disable automatic settlement of messages. <a href="#af313abfa8d5b19e4b61c779907eb9980">More...</a><br /></td></tr> <tr class="separator:af313abfa8d5b19e4b61c779907eb9980"><td class="memSeparator" colspan="2"> </td></tr> <tr class="memitem:a7e2689fd52f88f551d11face38a4157b"><td class="memItemLeft" align="right" valign="top"><a id="a7e2689fd52f88f551d11face38a4157b"></a> <a class="el" href="classproton_1_1receiver__options.html">receiver_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1receiver__options.html#a7e2689fd52f88f551d11face38a4157b">source</a> (<a class="el" href="classproton_1_1source__options.html">source_options</a> &)</td></tr> @@ -143,13 +142,17 @@ void </td><td class="memItemRight" valign="bottom"><a class="el" href="clas <tr class="memitem:a714a6a7dd1ea90c6046fe0460d2ce4f0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classproton_1_1receiver__options.html">receiver_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1receiver__options.html#a714a6a7dd1ea90c6046fe0460d2ce4f0">credit_window</a> (int count)</td></tr> <tr class="memdesc:a714a6a7dd1ea90c6046fe0460d2ce4f0"><td class="mdescLeft"> </td><td class="mdescRight">Automatically replenish credit for flow control up to <code>count</code> messages. <a href="#a714a6a7dd1ea90c6046fe0460d2ce4f0">More...</a><br /></td></tr> <tr class="separator:a714a6a7dd1ea90c6046fe0460d2ce4f0"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a038ed50e63983958b13e42d49d270b88"><td class="memItemLeft" align="right" valign="top"><a id="a038ed50e63983958b13e42d49d270b88"></a> +<a class="el" href="classproton_1_1receiver__options.html">receiver_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1receiver__options.html#a038ed50e63983958b13e42d49d270b88">name</a> (const std::string &name)</td></tr> +<tr class="memdesc:a038ed50e63983958b13e42d49d270b88"><td class="mdescLeft"> </td><td class="mdescRight">Set the link name. If not set a unique name is generated. <br /></td></tr> +<tr class="separator:a038ed50e63983958b13e42d49d270b88"><td class="memSeparator" colspan="2"> </td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Options for creating a receiver. </p> <p>Options can be "chained" like this:</p> -<div class="fragment"><div class="line">l = container.create_receiver(url, <a class="code" href="classproton_1_1receiver__options.html#a9e10a473b92db75e78a3ad8498f32c36">receiver_options</a>().<a class="code" href="classproton_1_1receiver__options.html#a84f38ac0f31f74011c9dc342e44a53df">handler</a>(h).<a class="code" href="classproton_1_1receiver__options.html#af313abfa8d5b19e4b61c779907eb9980">auto_settle</a>(<span class="keyword">true</span>));</div></div><!-- fragment --><p>You can also create an options object with common settings and use it as a base for different connections that have mostly the same settings:</p> -<div class="fragment"><div class="line"><a class="code" href="classproton_1_1receiver__options.html#a9e10a473b92db75e78a3ad8498f32c36">receiver_options</a> opts;</div><div class="line">opts.auto_settle(<span class="keyword">true</span>);</div><div class="line">c2 = container.open_receiver(url2, opts.handler(h2));</div></div><!-- fragment --><p>Normal value semantics: copy or assign creates a separate copy of the options. </p> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a18">broker.cpp</a>, <a class="el" href="client_8cpp-example.html#_a0">client.cpp</a>, <a class="el" href="multithreaded_client_flow_control_8cpp-example.html#_a19">multithreaded_client_flow_control.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a3">service_bus.cpp</a>.</dd> +<div class="fragment"><div class="line">l = container.create_receiver(url, <a class="code" href="classproton_1_1receiver__options.html#a9e10a473b92db75e78a3ad8498f32c36">receiver_options</a>().<a class="code" href="classproton_1_1receiver__options.html#a84f38ac0f31f74011c9dc342e44a53df">handler</a>(h).<a class="code" href="classproton_1_1receiver__options.html#a9b9ad83418de47f87c6c7062eaefb5b6">auto_accept</a>(<span class="keyword">true</span>));</div></div><!-- fragment --><p>You can also create an options object with common settings and use it as a base for different connections that have mostly the same settings:</p> +<div class="fragment"><div class="line"><a class="code" href="classproton_1_1receiver__options.html#a9e10a473b92db75e78a3ad8498f32c36">receiver_options</a> opts;</div><div class="line">opts.auto_accept(<span class="keyword">true</span>);</div><div class="line">c2 = container.open_receiver(url2, opts.handler(h2));</div></div><!-- fragment --><p>Normal value semantics: copy or assign creates a separate copy of the options. </p> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a16">broker.cpp</a>, <a class="el" href="client_8cpp-example.html#_a0">client.cpp</a>, <a class="el" href="multithreaded_client_flow_control_8cpp-example.html#_a19">multithreaded_client_flow_control.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a3">service_bus.cpp</a>.</dd> </dl></div><h2 class="groupheader">Member Function Documentation</h2> <a id="a84f38ac0f31f74011c9dc342e44a53df"></a> <h2 class="memtitle"><span class="permalink"><a href="#a84f38ac0f31f74011c9dc342e44a53df">◆ </a></span>handler()</h2> @@ -168,7 +171,7 @@ void </td><td class="memItemRight" valign="bottom"><a class="el" href="clas </div><div class="memdoc"> <p>Set a <a class="el" href="classproton_1_1messaging__handler.html" title="A handler for Proton messaging events. ">messaging_handler</a> for receiver events only. </p> -<p>The handler is no longer in use when <a class="el" href="classproton_1_1messaging__handler.html#a77ac5c1fd05404728451cd06dee1c907" title="The remote peer closed the link. ">messaging_handler::on_receiver_close()</a> is called. </p> +<p>The handler is no longer in use when <a class="el" href="classproton_1_1messaging__handler.html#ae51075d0f1d0c180bc8098370957ae28" title="The remote peer closed the link. ">messaging_handler::on_receiver_close()</a> is called. </p> </div> </div> @@ -229,9 +232,7 @@ void </td><td class="memItemRight" valign="bottom"><a class="el" href="clas </tr> </table> </div><div class="memdoc"> - -<p>Enable or disable automatic settlement of messages. </p> -<p>It is enabled by default. </p> +<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000001">Deprecated:</a></b></dt><dd>not applicable to receiver, only to sender </dd></dl> </div> </div>
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.js index e87fef6..afd7f6d 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.js +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1receiver__options.js @@ -11,5 +11,6 @@ var classproton_1_1receiver__options = [ "auto_settle", "classproton_1_1receiver__options.html#af313abfa8d5b19e4b61c779907eb9980", null ], [ "source", "classproton_1_1receiver__options.html#a7e2689fd52f88f551d11face38a4157b", null ], [ "target", "classproton_1_1receiver__options.html#a7823f6c72dc78481be578de1658b99eb", null ], - [ "credit_window", "classproton_1_1receiver__options.html#a714a6a7dd1ea90c6046fe0460d2ce4f0", null ] + [ "credit_window", "classproton_1_1receiver__options.html#a714a6a7dd1ea90c6046fe0460d2ce4f0", null ], + [ "name", "classproton_1_1receiver__options.html#a038ed50e63983958b13e42d49d270b88", null ] ]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1returned.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1returned.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1returned.html index 0266e46..4eccbbf 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1returned.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1returned.html @@ -104,8 +104,9 @@ $(document).ready(function(){initNavTree('classproton_1_1returned.html','');}); <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> -<tr class="memitem:a7e6c2d7eb0ba9807a9fb9fee0f628508"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1returned.html#a7e6c2d7eb0ba9807a9fb9fee0f628508">returned</a> (const <a class="el" href="classproton_1_1returned.html">returned</a>< T > &)</td></tr> -<tr class="memdesc:a7e6c2d7eb0ba9807a9fb9fee0f628508"><td class="mdescLeft"> </td><td class="mdescRight">Copy operator required to return a value. <a href="#a7e6c2d7eb0ba9807a9fb9fee0f628508">More...</a><br /></td></tr> +<tr class="memitem:a7e6c2d7eb0ba9807a9fb9fee0f628508"><td class="memItemLeft" align="right" valign="top"><a id="a7e6c2d7eb0ba9807a9fb9fee0f628508"></a> + </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1returned.html#a7e6c2d7eb0ba9807a9fb9fee0f628508">returned</a> (const <a class="el" href="classproton_1_1returned.html">returned</a>< T > &)</td></tr> +<tr class="memdesc:a7e6c2d7eb0ba9807a9fb9fee0f628508"><td class="mdescLeft"> </td><td class="mdescRight">Copy operator required to return a value. <br /></td></tr> <tr class="separator:a7e6c2d7eb0ba9807a9fb9fee0f628508"><td class="memSeparator" colspan="2"> </td></tr> <tr class="memitem:a54724b9dd792a6022b918eae2f393734"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1returned.html#a54724b9dd792a6022b918eae2f393734">operator T</a> () const</td></tr> <tr class="memdesc:a54724b9dd792a6022b918eae2f393734"><td class="mdescLeft"> </td><td class="mdescRight">Convert to the proton::object. <a href="#a54724b9dd792a6022b918eae2f393734">More...</a><br /></td></tr> @@ -117,29 +118,7 @@ class proton::returned< T ></h3> <p>A return type for container methods. </p> <p><b>Thread safety</b> - Container method return values are <em>thread-unsafe</em>. A single-threaded application can safely assign the <code>returned<T></code> value to a plain <code>T</code>. A multithreaded application <em>must</em> ignore the returned value because it may already be invalid by the time the function returns. Multithreaded applications can safely access the value inside <a class="el" href="classproton_1_1messaging__handler.html">messaging_handler</a> functions. </p> -</div><h2 class="groupheader">Constructor & Destructor Documentation</h2> -<a id="a7e6c2d7eb0ba9807a9fb9fee0f628508"></a> -<h2 class="memtitle"><span class="permalink"><a href="#a7e6c2d7eb0ba9807a9fb9fee0f628508">◆ </a></span>returned()</h2> - -<div class="memitem"> -<div class="memproto"> - <table class="memname"> - <tr> - <td class="memname"><a class="el" href="classproton_1_1returned.html">returned</a> </td> - <td>(</td> - <td class="paramtype">const <a class="el" href="classproton_1_1returned.html">returned</a>< T > & </td> - <td class="paramname"></td><td>)</td> - <td></td> - </tr> - </table> -</div><div class="memdoc"> - -<p>Copy operator required to return a value. </p> -<dl class="section note"><dt>Note</dt><dd>Thread-safe </dd></dl> - -</div> -</div> -<h2 class="groupheader">Member Function Documentation</h2> +</div><h2 class="groupheader">Member Function Documentation</h2> <a id="a54724b9dd792a6022b918eae2f393734"></a> <h2 class="memtitle"><span class="permalink"><a href="#a54724b9dd792a6022b918eae2f393734">◆ </a></span>operator T()</h2> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl-members.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl-members.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl-members.html index f29ed9c..b9f6a9a 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl-members.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl-members.html @@ -100,13 +100,9 @@ $(document).ready(function(){initNavTree('classproton_1_1sasl.html','');}); <tr><td class="entry"><a class="el" href="classproton_1_1sasl.html#ae4d8c99395936130ece8495be232b9c2">mech</a>() const</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acdac157bdf0b85a40d2619cbc8bc1ae5fe2">NONE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acda2bc49ec37d6a5715dd23e85f1ff5bb59">OK</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> - <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>operator=</b>(const sasl &)=delete (defined in <a class="el" href="classproton_1_1sasl.html">sasl</a>)</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> - <tr bgcolor="#f0f0f0"><td class="entry"><b>operator=</b>(sasl &&)=delete (defined in <a class="el" href="classproton_1_1sasl.html">sasl</a>)</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acd">outcome</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classproton_1_1sasl.html#aee5a4997bbfa58f1b8176f936618de00">outcome</a>() const</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acdae0a57d717d9f8c8fdba757be1b0afdcf">PERM</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> - <tr bgcolor="#f0f0f0"><td class="entry"><b>sasl</b>()=delete (defined in <a class="el" href="classproton_1_1sasl.html">sasl</a>)</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> - <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>sasl</b>(const sasl &)=delete (defined in <a class="el" href="classproton_1_1sasl.html">sasl</a>)</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acda69a8d053cf3b5b28fa0c7dde6f883e10">SYS</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acda5937389a60030a604f0efdf5e3927325">TEMP</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classproton_1_1sasl.html#a9444df7d81bd265e0a8e1726fd12b058">user</a>() const</td><td class="entry"><a class="el" href="classproton_1_1sasl.html">sasl</a></td><td class="entry"></td></tr> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.html index 1a2866a..5efa349 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.html @@ -120,15 +120,6 @@ Public Types</h2></td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> -<tr class="memitem:af6da8cd4e28825fcfe0a8413783a5add"><td class="memItemLeft" align="right" valign="top"><a id="af6da8cd4e28825fcfe0a8413783a5add"></a> - </td><td class="memItemRight" valign="bottom"><b>sasl</b> (const <a class="el" href="classproton_1_1sasl.html">sasl</a> &)=delete</td></tr> -<tr class="separator:af6da8cd4e28825fcfe0a8413783a5add"><td class="memSeparator" colspan="2"> </td></tr> -<tr class="memitem:a74642761208a390dc7dd63c869dc8599"><td class="memItemLeft" align="right" valign="top"><a id="a74642761208a390dc7dd63c869dc8599"></a> -<a class="el" href="classproton_1_1sasl.html">sasl</a> & </td><td class="memItemRight" valign="bottom"><b>operator=</b> (const <a class="el" href="classproton_1_1sasl.html">sasl</a> &)=delete</td></tr> -<tr class="separator:a74642761208a390dc7dd63c869dc8599"><td class="memSeparator" colspan="2"> </td></tr> -<tr class="memitem:a615d497d6e83d12de95eff51963d551e"><td class="memItemLeft" align="right" valign="top"><a id="a615d497d6e83d12de95eff51963d551e"></a> -<a class="el" href="classproton_1_1sasl.html">sasl</a> & </td><td class="memItemRight" valign="bottom"><b>operator=</b> (<a class="el" href="classproton_1_1sasl.html">sasl</a> &&)=delete</td></tr> -<tr class="separator:a615d497d6e83d12de95eff51963d551e"><td class="memSeparator" colspan="2"> </td></tr> <tr class="memitem:aee5a4997bbfa58f1b8176f936618de00"><td class="memItemLeft" align="right" valign="top"><a id="aee5a4997bbfa58f1b8176f936618de00"></a> enum <a class="el" href="classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acd">outcome</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1sasl.html#aee5a4997bbfa58f1b8176f936618de00">outcome</a> () const</td></tr> <tr class="memdesc:aee5a4997bbfa58f1b8176f936618de00"><td class="mdescLeft"> </td><td class="mdescRight">Get the outcome. <br /></td></tr> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.js index 69c87e2..42e0af4 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.js +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sasl.js @@ -8,10 +8,6 @@ var classproton_1_1sasl = [ "PERM", "classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acdae0a57d717d9f8c8fdba757be1b0afdcf", null ], [ "TEMP", "classproton_1_1sasl.html#af47997198e7e7301a1cd8602c7f02acda5937389a60030a604f0efdf5e3927325", null ] ] ], - [ "sasl", "classproton_1_1sasl.html#ac1d29864665cf5b575439241353603eb", null ], - [ "sasl", "classproton_1_1sasl.html#af6da8cd4e28825fcfe0a8413783a5add", null ], - [ "operator=", "classproton_1_1sasl.html#a74642761208a390dc7dd63c869dc8599", null ], - [ "operator=", "classproton_1_1sasl.html#a615d497d6e83d12de95eff51963d551e", null ], [ "outcome", "classproton_1_1sasl.html#aee5a4997bbfa58f1b8176f936618de00", null ], [ "user", "classproton_1_1sasl.html#a9444df7d81bd265e0a8e1726fd12b058", null ], [ "mech", "classproton_1_1sasl.html#ae4d8c99395936130ece8495be232b9c2", null ] http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender.html index 1d5258d..90e016e 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender.html @@ -194,7 +194,7 @@ class <a class="el" href="classproton_1_1session.html">session</a> </td><td </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>A channel for sending messages. </p> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a1">broker.cpp</a>, <a class="el" href="client_8cpp-example.html#_a3">client.cpp</a>, <a class="el" href="direct_send_8cpp-example.html#_a6">direct_send.cpp</a>, <a class="el" href="helloworld_8cpp-example.html#_a11">helloworld.cpp</a>, <a class="el" href="helloworld_direct_8cpp-example.html#_a7">helloworld_direct.cpp</a>, <a class="el" href="multithreaded_client_8cpp-example.html#_a1">multithreaded_client.cpp</a>, <a class="el" href="multithreaded_client_flow_control_8cpp-example.html#_a1">multithreaded_client_flow_control.cpp</a>, <a class="el" href="scheduled_send_8cpp-example.html#_a1">scheduled_send.cpp</a>, <a class="el" href="scheduled_send_03_8cpp-example.html#_a8">scheduled_send_03.cpp</a>, <a class="el" href="server_direct_8cpp-example.html#_a5">server_direct.cpp</a>, <a class="el" href="service_bus_8cpp-example.html#_a24">service_bus.cpp</a>, and <a class="el" href="simple_send_8cpp-example.ht ml#_a1">simple_send.cpp</a>.</dd> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a1">broker.cpp</a>, <a class="el" href="client_8cpp-example.html#_a3">client.cpp</a>, <a class="el" href="direct_send_8cpp-example.html#_a6">direct_send.cpp</a>, <a class="el" href="helloworld_8cpp-example.html#_a9">helloworld.cpp</a>, <a class="el" href="multithreaded_client_8cpp-example.html#_a1">multithreaded_client.cpp</a>, <a class="el" href="multithreaded_client_flow_control_8cpp-example.html#_a1">multithreaded_client_flow_control.cpp</a>, <a class="el" href="scheduled_send_8cpp-example.html#_a1">scheduled_send.cpp</a>, <a class="el" href="scheduled_send_03_8cpp-example.html#_a8">scheduled_send_03.cpp</a>, <a class="el" href="server_direct_8cpp-example.html#_a6">server_direct.cpp</a>, <a class="el" href="service_bus_8cpp-example.html#_a27">service_bus.cpp</a>, and <a class="el" href="simple_send_8cpp-example.html#_a1">simple_send.cpp</a>.</dd> </dl></div><h2 class="groupheader">Member Function Documentation</h2> <a id="a9e8555112049fc2b4945120b3c45f8ab"></a> <h2 class="memtitle"><span class="permalink"><a href="#a9e8555112049fc2b4945120b3c45f8ab">◆ </a></span>open() <span class="overload">[1/2]</span></h2> @@ -213,7 +213,7 @@ class <a class="el" href="classproton_1_1session.html">session</a> </td><td <p>Open the sender. </p> <dl class="section see"><dt>See also</dt><dd>endpoint_lifecycle </dd></dl> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#a12">broker.cpp</a>, and <a class="el" href="server_direct_8cpp-example.html#a8">server_direct.cpp</a>.</dd> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="server_direct_8cpp-example.html#a9">server_direct.cpp</a>.</dd> </dl> </div> </div> @@ -286,7 +286,7 @@ class <a class="el" href="classproton_1_1session.html">session</a> </td><td <dl class="section see"><dt>See also</dt><dd>endpoint_lifecycle </dd></dl> <p>Implements <a class="el" href="classproton_1_1endpoint.html#af6ee7eacbde6b379b68d954e44f6e549">endpoint</a>.</p> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="direct_recv_8cpp-example.html#a11">direct_recv.cpp</a>, <a class="el" href="helloworld_8cpp-example.html#a14">helloworld.cpp</a>, <a class="el" href="helloworld_direct_8cpp-example.html#a10">helloworld_direct.cpp</a>, <a class="el" href="service_bus_8cpp-example.html#a20">service_bus.cpp</a>, and <a class="el" href="simple_recv_8cpp-example.html#a14">simple_recv.cpp</a>.</dd> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="direct_recv_8cpp-example.html#a11">direct_recv.cpp</a>, <a class="el" href="helloworld_8cpp-example.html#a12">helloworld.cpp</a>, <a class="el" href="service_bus_8cpp-example.html#a23">service_bus.cpp</a>, and <a class="el" href="simple_recv_8cpp-example.html#a14">simple_recv.cpp</a>.</dd> </dl> </div> </div> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options-members.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options-members.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options-members.html index 184e688..33e9f7d 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options-members.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options-members.html @@ -99,13 +99,14 @@ $(document).ready(function(){initNavTree('classproton_1_1sender__options.html',' <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a087eda4a18c293de85107fcfbb7ff31f">auto_settle</a>(bool)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#ab7dc71a7b5737c2ca642058a296292db">delivery_mode</a>(delivery_mode)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a0d94e8f4c1746780259f3eb2d1728aff">handler</a>(class messaging_handler &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a13e6aa698a300681f88a709ccb50c8f6">operator=</a>(const sender_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a619c789958ede03d0682a1a723cd7658">sender_options</a>()</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a258f4dd5231e0a3f048ec1f351c23cd4">sender_options</a>(const sender_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#af4bd1e60b98c766f4c822aad783162c0">source</a>(const source_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a7d4e83ee43fa1ee99a45f5bbe837ffcc">target</a>(const target_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a16b609dbb6a9df5ab7e719f0de05026b">update</a>(const sender_options &other)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> - <tr bgcolor="#f0f0f0"><td class="entry"><b>~sender_options</b>() (defined in <a class="el" href="classproton_1_1sender__options.html">sender_options</a>)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#af37454934677c6f0e8bbe8bb1087f1ed">name</a>(const std::string &name)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a13e6aa698a300681f88a709ccb50c8f6">operator=</a>(const sender_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a619c789958ede03d0682a1a723cd7658">sender_options</a>()</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a258f4dd5231e0a3f048ec1f351c23cd4">sender_options</a>(const sender_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#af4bd1e60b98c766f4c822aad783162c0">source</a>(const source_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a7d4e83ee43fa1ee99a45f5bbe837ffcc">target</a>(const target_options &)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1sender__options.html#a16b609dbb6a9df5ab7e719f0de05026b">update</a>(const sender_options &other)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>~sender_options</b>() (defined in <a class="el" href="classproton_1_1sender__options.html">sender_options</a>)</td><td class="entry"><a class="el" href="classproton_1_1sender__options.html">sender_options</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.html index 55930f1..a22c4a8 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.html @@ -139,13 +139,17 @@ void </td><td class="memItemRight" valign="bottom"><a class="el" href="clas <a class="el" href="classproton_1_1sender__options.html">sender_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1sender__options.html#a7d4e83ee43fa1ee99a45f5bbe837ffcc">target</a> (const <a class="el" href="classproton_1_1target__options.html">target_options</a> &)</td></tr> <tr class="memdesc:a7d4e83ee43fa1ee99a45f5bbe837ffcc"><td class="mdescLeft"> </td><td class="mdescRight">Options for the receiver node of the receiver. <br /></td></tr> <tr class="separator:a7d4e83ee43fa1ee99a45f5bbe837ffcc"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:af37454934677c6f0e8bbe8bb1087f1ed"><td class="memItemLeft" align="right" valign="top"><a id="af37454934677c6f0e8bbe8bb1087f1ed"></a> +<a class="el" href="classproton_1_1sender__options.html">sender_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1sender__options.html#af37454934677c6f0e8bbe8bb1087f1ed">name</a> (const std::string &name)</td></tr> +<tr class="memdesc:af37454934677c6f0e8bbe8bb1087f1ed"><td class="mdescLeft"> </td><td class="mdescRight">Set the link name. If not set a unique name is generated. <br /></td></tr> +<tr class="separator:af37454934677c6f0e8bbe8bb1087f1ed"><td class="memSeparator" colspan="2"> </td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Options for creating a sender. </p> <p>Options can be "chained" like this:</p> <div class="fragment"><div class="line">l = container.create_sender(url, <a class="code" href="classproton_1_1sender__options.html#a619c789958ede03d0682a1a723cd7658">sender_options</a>().<a class="code" href="classproton_1_1sender__options.html#a0d94e8f4c1746780259f3eb2d1728aff">handler</a>(h).<a class="code" href="classproton_1_1sender__options.html#a087eda4a18c293de85107fcfbb7ff31f">auto_settle</a>(<span class="keyword">false</span>));</div></div><!-- fragment --><p>You can also create an options object with common settings and use it as a base for different connections that have mostly the same settings:</p> <div class="fragment"><div class="line"><a class="code" href="classproton_1_1sender__options.html#a619c789958ede03d0682a1a723cd7658">sender_options</a> opts;</div><div class="line">opts.delivery_mode(<a class="code" href="structproton_1_1delivery__mode.html#a811fe196a5d9d37857c2f8adeeaac3c6adc975babe0d2bc27916397e614eb6624">delivery_mode::AT_MOST_ONCE</a>);</div><div class="line">l1 = container.open_sender(url1, opts.handler(h1));</div><div class="line">c2 = container.open_receiver(url2, opts.handler(h2));</div></div><!-- fragment --><p>Normal value semantics: copy or assign creates a separate copy of the options. </p> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a13">broker.cpp</a>, <a class="el" href="server_direct_8cpp-example.html#_a9">server_direct.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a2">service_bus.cpp</a>.</dd> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a11">broker.cpp</a>, <a class="el" href="server_direct_8cpp-example.html#_a10">server_direct.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a2">service_bus.cpp</a>.</dd> </dl></div><h2 class="groupheader">Member Function Documentation</h2> <a id="a0d94e8f4c1746780259f3eb2d1728aff"></a> <h2 class="memtitle"><span class="permalink"><a href="#a0d94e8f4c1746780259f3eb2d1728aff">◆ </a></span>handler()</h2> @@ -164,7 +168,7 @@ void </td><td class="memItemRight" valign="bottom"><a class="el" href="clas </div><div class="memdoc"> <p>Set a <a class="el" href="classproton_1_1messaging__handler.html" title="A handler for Proton messaging events. ">messaging_handler</a> for sender events only. </p> -<p>The handler is no longer in use when <a class="el" href="classproton_1_1messaging__handler.html#a7942b98699bd21e827041626ee1b5c84" title="The remote peer closed the link. ">messaging_handler::on_sender_close()</a> is called. <a class="el" href="classproton_1_1messaging__handler.html#a7942b98699bd21e827041626ee1b5c84" title="The remote peer closed the link. ">messaging_handler::on_sender_close()</a> may not be called if a connection is aborted, in that case it should be cleaned up in its connection's <a class="el" href="classproton_1_1messaging__handler.html#a47c33c5e6c13d23f1b8a745bf7bdfa8f" title="The underlying network transport has closed. ">messaging_handler::on_transport_close()</a> </p> +<p>The handler is no longer in use when <a class="el" href="classproton_1_1messaging__handler.html#aa604b2d3dad610ded346b0dcf3ec6f29" title="The remote peer closed the link. ">messaging_handler::on_sender_close()</a> is called. <a class="el" href="classproton_1_1messaging__handler.html#aa604b2d3dad610ded346b0dcf3ec6f29" title="The remote peer closed the link. ">messaging_handler::on_sender_close()</a> may not be called if a connection is aborted, in that case it should be cleaned up in its connection's <a class="el" href="classproton_1_1messaging__handler.html#a8a60c2f6628f44a9587deea8c8729f0f" title="The underlying network transport has closed. ">messaging_handler::on_transport_close()</a> </p> </div> </div> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.js index b28db82..8a2ce48 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.js +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1sender__options.js @@ -9,5 +9,6 @@ var classproton_1_1sender__options = [ "delivery_mode", "classproton_1_1sender__options.html#ab7dc71a7b5737c2ca642058a296292db", null ], [ "auto_settle", "classproton_1_1sender__options.html#a087eda4a18c293de85107fcfbb7ff31f", null ], [ "source", "classproton_1_1sender__options.html#af4bd1e60b98c766f4c822aad783162c0", null ], - [ "target", "classproton_1_1sender__options.html#a7d4e83ee43fa1ee99a45f5bbe837ffcc", null ] + [ "target", "classproton_1_1sender__options.html#a7d4e83ee43fa1ee99a45f5bbe837ffcc", null ], + [ "name", "classproton_1_1sender__options.html#af37454934677c6f0e8bbe8bb1087f1ed", null ] ]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1session.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1session.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1session.html index f5a4040..608194f 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1session.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1session.html @@ -190,7 +190,7 @@ receiver_range </td><td class="memItemRight" valign="bottom"><a class="el" </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>A container of senders and receivers. </p> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a24">broker.cpp</a>.</dd> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a28">broker.cpp</a>.</dd> </dl></div><h2 class="groupheader">Member Function Documentation</h2> <a id="a9e8555112049fc2b4945120b3c45f8ab"></a> <h2 class="memtitle"><span class="permalink"><a href="#a9e8555112049fc2b4945120b3c45f8ab">◆ </a></span>open() <span class="overload">[1/2]</span></h2> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source-members.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source-members.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source-members.html index 2ce0098..aee0789 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source-members.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source-members.html @@ -97,29 +97,30 @@ $(document).ready(function(){initNavTree('classproton_1_1source.html','');}); <p>This is the complete list of members for <a class="el" href="classproton_1_1source.html">source</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#a4744eb217c976c199b678bb5a0d55acf">address</a>() const</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a61db0571ab7d1a29ad77549ff99d6b3da07731dff0bf77faf2dc60a19c925e3c4">CONFIGURATION</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1ebad1b07c50c2dc77892c0254442e206a23">CONNECTION_CLOSE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089aba6788019f0f871f0aefcd5644635785">COPY</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089">distribution_mode</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source.html#abb1886a3a928bddfaf76dc67e3d15525">distribution_mode</a>() const</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#a61db0571ab7d1a29ad77549ff99d6b3d">durability_mode</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#aeb6439d6ea5d274a59dd8e90d97f31d8">proton::terminus::durability_mode</a>()</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#adcc4ef24adb8478230018c519aa636ec">dynamic</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source.html#a348690a43df146eca928a8c06034a1eb">expiry_policy</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#afc97dbb9b04812da5be8a41eb9434904">proton::terminus::expiry_policy</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source.html#ad5af497ef0602d13b06773c910994fd7">filter_map</a> typedef</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#a5872b2a2f80f74a6f4f5b02791861a6d">filters</a>() const</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1eba7201cfe403ee6d4b4b717d146e38bee1">LINK_CLOSE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089aed3ef32890b6da0919b57254c5206c62">MOVE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1eba3a267f9424d4d555780a8d26209c8118">NEVER</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#ab503c82e36aa618e6c6fb34feaad57b8">node_properties</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a61db0571ab7d1a29ad77549ff99d6b3dafdced71ad3dc05c5221439eddc3573e8">NONDURABLE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1ebac028e516a1a662691a25993ab4f86c09">SESSION_CLOSE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source.html#a6cfde826a3d3092bd8a3a636e2336bbb">source</a>()</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> - <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>terminus</b>() (defined in <a class="el" href="classproton_1_1terminus.html">terminus</a>)</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a16d54f985193a3ce6ac69ffe10e8dfb6">timeout</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a61db0571ab7d1a29ad77549ff99d6b3da9a971a7b3eb61a4e22701f1f4099909f">UNSETTLED_STATE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089aa876f4fb4e5f7f0c5c48fcf66c9ce7ce">UNSPECIFIED</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a1c6bf68ea1dcbd3b2a0897adb628c1ee">capabilities</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a61db0571ab7d1a29ad77549ff99d6b3da07731dff0bf77faf2dc60a19c925e3c4">CONFIGURATION</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1ebad1b07c50c2dc77892c0254442e206a23">CONNECTION_CLOSE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089aba6788019f0f871f0aefcd5644635785">COPY</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089">distribution_mode</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#abb1886a3a928bddfaf76dc67e3d15525">distribution_mode</a>() const</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source.html#a61db0571ab7d1a29ad77549ff99d6b3d">durability_mode</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#aeb6439d6ea5d274a59dd8e90d97f31d8">proton::terminus::durability_mode</a>()</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#adcc4ef24adb8478230018c519aa636ec">dynamic</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#a348690a43df146eca928a8c06034a1eb">expiry_policy</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#afc97dbb9b04812da5be8a41eb9434904">proton::terminus::expiry_policy</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#ad5af497ef0602d13b06773c910994fd7">filter_map</a> typedef</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source.html#a5872b2a2f80f74a6f4f5b02791861a6d">filters</a>() const</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1eba7201cfe403ee6d4b4b717d146e38bee1">LINK_CLOSE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089aed3ef32890b6da0919b57254c5206c62">MOVE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1eba3a267f9424d4d555780a8d26209c8118">NEVER</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#ab503c82e36aa618e6c6fb34feaad57b8">node_properties</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a61db0571ab7d1a29ad77549ff99d6b3dafdced71ad3dc05c5221439eddc3573e8">NONDURABLE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a348690a43df146eca928a8c06034a1ebac028e516a1a662691a25993ab4f86c09">SESSION_CLOSE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#a6cfde826a3d3092bd8a3a636e2336bbb">source</a>()</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>terminus</b>() (defined in <a class="el" href="classproton_1_1terminus.html">terminus</a>)</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1terminus.html#a16d54f985193a3ce6ac69ffe10e8dfb6">timeout</a>() const</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1terminus.html#a61db0571ab7d1a29ad77549ff99d6b3da9a971a7b3eb61a4e22701f1f4099909f">UNSETTLED_STATE</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1terminus.html">terminus</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089aa876f4fb4e5f7f0c5c48fcf66c9ce7ce">UNSPECIFIED</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1source.html">source</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.html index c35c4ed..f08b45a 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.html @@ -166,6 +166,10 @@ bool </td><td class="memItemRight" valign="bottom"><a class="el" href="clas <tr class="memitem:ab503c82e36aa618e6c6fb34feaad57b8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classproton_1_1value.html">value</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1terminus.html#ab503c82e36aa618e6c6fb34feaad57b8">node_properties</a> () const</td></tr> <tr class="memdesc:ab503c82e36aa618e6c6fb34feaad57b8"><td class="mdescLeft"> </td><td class="mdescRight">Obtain a reference to the AMQP dynamic node properties for the terminus. <a href="#ab503c82e36aa618e6c6fb34feaad57b8">More...</a><br /></td></tr> <tr class="separator:ab503c82e36aa618e6c6fb34feaad57b8"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:a1c6bf68ea1dcbd3b2a0897adb628c1ee"><td class="memItemLeft" align="right" valign="top"><a id="a1c6bf68ea1dcbd3b2a0897adb628c1ee"></a> +std::vector< <a class="el" href="classproton_1_1symbol.html">symbol</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1terminus.html#a1c6bf68ea1dcbd3b2a0897adb628c1ee">capabilities</a> () const</td></tr> +<tr class="memdesc:a1c6bf68ea1dcbd3b2a0897adb628c1ee"><td class="mdescLeft"> </td><td class="mdescRight">Extension capabilities that are supported/requested. <br /></td></tr> +<tr class="separator:a1c6bf68ea1dcbd3b2a0897adb628c1ee"><td class="memSeparator" colspan="2"> </td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>A point of origin for messages. </p> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.js index a1dbc31..372b696 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.js +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source.js @@ -16,5 +16,6 @@ var classproton_1_1source = [ "expiry_policy", "classproton_1_1source.html#afc97dbb9b04812da5be8a41eb9434904", null ], [ "timeout", "classproton_1_1source.html#a16d54f985193a3ce6ac69ffe10e8dfb6", null ], [ "dynamic", "classproton_1_1source.html#adcc4ef24adb8478230018c519aa636ec", null ], - [ "node_properties", "classproton_1_1source.html#ab503c82e36aa618e6c6fb34feaad57b8", null ] + [ "node_properties", "classproton_1_1source.html#ab503c82e36aa618e6c6fb34feaad57b8", null ], + [ "capabilities", "classproton_1_1source.html#a1c6bf68ea1dcbd3b2a0897adb628c1ee", null ] ]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options-members.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options-members.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options-members.html index 160a1ee..2a2292f 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options-members.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options-members.html @@ -97,16 +97,17 @@ $(document).ready(function(){initNavTree('classproton_1_1source__options.html',' <p>This is the complete list of members for <a class="el" href="classproton_1_1source__options.html">source_options</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#a36fa9e64134459cfe70707e0439ba850">address</a>(const std::string &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#a41ffaf202d22b3276c15bfcf5b5c3ed6">distribution_mode</a>(enum source::distribution_mode)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#a89176218ec0f2754c6499935368627ab">durability_mode</a>(enum source::durability_mode)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#ab491bddac8a47b9478c748f43ab583d7">dynamic</a>(bool)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#aad9e94ccdd35ae9bd3cfd730d5749760">expiry_policy</a>(enum source::expiry_policy)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#a9a38c4697708d223e8163d301e92f6af">filters</a>(const source::filter_map &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#a4c7e157cd06e40dd7fd243fcb47297be">operator=</a>(const source_options &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#afb2122d3d1a1f504c7cb23ea1093afcf">source_options</a>()</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#a1d2323580261c3bce5c41cb93d72bff9">source_options</a>(const source_options &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#a5fca9a55327631935b124badfebea989">timeout</a>(duration)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> - <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>~source_options</b>() (defined in <a class="el" href="classproton_1_1source__options.html">source_options</a>)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#aeaddb5ce3dec75cc6e55f3249adfe454">capabilities</a>(const std::vector< symbol > &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#a41ffaf202d22b3276c15bfcf5b5c3ed6">distribution_mode</a>(enum source::distribution_mode)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#a89176218ec0f2754c6499935368627ab">durability_mode</a>(enum source::durability_mode)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#ab491bddac8a47b9478c748f43ab583d7">dynamic</a>(bool)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#aad9e94ccdd35ae9bd3cfd730d5749760">expiry_policy</a>(enum source::expiry_policy)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#a9a38c4697708d223e8163d301e92f6af">filters</a>(const source::filter_map &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#a4c7e157cd06e40dd7fd243fcb47297be">operator=</a>(const source_options &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#afb2122d3d1a1f504c7cb23ea1093afcf">source_options</a>()</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1source__options.html#a1d2323580261c3bce5c41cb93d72bff9">source_options</a>(const source_options &)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1source__options.html#a5fca9a55327631935b124badfebea989">timeout</a>(duration)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> + <tr bgcolor="#f0f0f0"><td class="entry"><b>~source_options</b>() (defined in <a class="el" href="classproton_1_1source__options.html">source_options</a>)</td><td class="entry"><a class="el" href="classproton_1_1source__options.html">source_options</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.html index d8d3e4b..8c78cc0 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.html @@ -123,7 +123,7 @@ Public Member Functions</h2></td></tr> <tr class="memdesc:ab491bddac8a47b9478c748f43ab583d7"><td class="mdescLeft"> </td><td class="mdescRight">Request that a node be dynamically created by the remote peer. <a href="#ab491bddac8a47b9478c748f43ab583d7">More...</a><br /></td></tr> <tr class="separator:ab491bddac8a47b9478c748f43ab583d7"><td class="memSeparator" colspan="2"> </td></tr> <tr class="memitem:a41ffaf202d22b3276c15bfcf5b5c3ed6"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classproton_1_1source__options.html">source_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1source__options.html#a41ffaf202d22b3276c15bfcf5b5c3ed6">distribution_mode</a> (enum <a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089">source::distribution_mode</a>)</td></tr> -<tr class="memdesc:a41ffaf202d22b3276c15bfcf5b5c3ed6"><td class="mdescLeft"> </td><td class="mdescRight">Control whether messsages are browsed or consumed. <a href="#a41ffaf202d22b3276c15bfcf5b5c3ed6">More...</a><br /></td></tr> +<tr class="memdesc:a41ffaf202d22b3276c15bfcf5b5c3ed6"><td class="mdescLeft"> </td><td class="mdescRight">Control whether messages are browsed or consumed. <a href="#a41ffaf202d22b3276c15bfcf5b5c3ed6">More...</a><br /></td></tr> <tr class="separator:a41ffaf202d22b3276c15bfcf5b5c3ed6"><td class="memSeparator" colspan="2"> </td></tr> <tr class="memitem:a89176218ec0f2754c6499935368627ab"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classproton_1_1source__options.html">source_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1source__options.html#a89176218ec0f2754c6499935368627ab">durability_mode</a> (enum <a class="el" href="classproton_1_1source.html#a61db0571ab7d1a29ad77549ff99d6b3d">source::durability_mode</a>)</td></tr> <tr class="memdesc:a89176218ec0f2754c6499935368627ab"><td class="mdescLeft"> </td><td class="mdescRight">Control the persistence of the source node. <a href="#a89176218ec0f2754c6499935368627ab">More...</a><br /></td></tr> @@ -137,12 +137,16 @@ Public Member Functions</h2></td></tr> <tr class="memitem:a9a38c4697708d223e8163d301e92f6af"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classproton_1_1source__options.html">source_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1source__options.html#a9a38c4697708d223e8163d301e92f6af">filters</a> (const <a class="el" href="classproton_1_1source.html#ad5af497ef0602d13b06773c910994fd7">source::filter_map</a> &)</td></tr> <tr class="memdesc:a9a38c4697708d223e8163d301e92f6af"><td class="mdescLeft"> </td><td class="mdescRight"><b>Unsettled API</b> - Specify a filter mechanism on the source that restricts message flow to a subset of the available messages. <a href="#a9a38c4697708d223e8163d301e92f6af">More...</a><br /></td></tr> <tr class="separator:a9a38c4697708d223e8163d301e92f6af"><td class="memSeparator" colspan="2"> </td></tr> +<tr class="memitem:aeaddb5ce3dec75cc6e55f3249adfe454"><td class="memItemLeft" align="right" valign="top"><a id="aeaddb5ce3dec75cc6e55f3249adfe454"></a> +<a class="el" href="classproton_1_1source__options.html">source_options</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1source__options.html#aeaddb5ce3dec75cc6e55f3249adfe454">capabilities</a> (const std::vector< <a class="el" href="classproton_1_1symbol.html">symbol</a> > &)</td></tr> +<tr class="memdesc:aeaddb5ce3dec75cc6e55f3249adfe454"><td class="mdescLeft"> </td><td class="mdescRight">Extension capabilities that are supported/requested. <br /></td></tr> +<tr class="separator:aeaddb5ce3dec75cc6e55f3249adfe454"><td class="memSeparator" colspan="2"> </td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Options for creating a source node for a sender or receiver. </p> <p>Options can be "chained". For more information see <a class="el" href="classproton_1_1connection__options.html">proton::connection_options</a>.</p> <p>Normal value semantics: copy or assign creates a separate copy of the options. </p> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a14">broker.cpp</a>, <a class="el" href="client_8cpp-example.html#_a1">client.cpp</a>, <a class="el" href="server_direct_8cpp-example.html#_a10">server_direct.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a0">service_bus.cpp</a>.</dd> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="broker_8cpp-example.html#_a12">broker.cpp</a>, <a class="el" href="client_8cpp-example.html#_a1">client.cpp</a>, <a class="el" href="server_direct_8cpp-example.html#_a11">server_direct.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a0">service_bus.cpp</a>.</dd> </dl></div><h2 class="groupheader">Member Function Documentation</h2> <a id="a36fa9e64134459cfe70707e0439ba850"></a> <h2 class="memtitle"><span class="permalink"><a href="#a36fa9e64134459cfe70707e0439ba850">◆ </a></span>address()</h2> @@ -202,7 +206,7 @@ Public Member Functions</h2></td></tr> </table> </div><div class="memdoc"> -<p>Control whether messsages are browsed or consumed. </p> +<p>Control whether messages are browsed or consumed. </p> <p>The default is <a class="el" href="classproton_1_1source.html#ad049690d03cac384636e0c2055726089aed3ef32890b6da0919b57254c5206c62" title="Once transferred, the message is unavailable to other links. ">source::MOVE</a>, meaning consumed. </p> </div> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.js index 4a1153e..7c59dcb 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.js +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1source__options.js @@ -10,5 +10,6 @@ var classproton_1_1source__options = [ "durability_mode", "classproton_1_1source__options.html#a89176218ec0f2754c6499935368627ab", null ], [ "timeout", "classproton_1_1source__options.html#a5fca9a55327631935b124badfebea989", null ], [ "expiry_policy", "classproton_1_1source__options.html#aad9e94ccdd35ae9bd3cfd730d5749760", null ], - [ "filters", "classproton_1_1source__options.html#a9a38c4697708d223e8163d301e92f6af", null ] + [ "filters", "classproton_1_1source__options.html#a9a38c4697708d223e8163d301e92f6af", null ], + [ "capabilities", "classproton_1_1source__options.html#aeaddb5ce3dec75cc6e55f3249adfe454", null ] ]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl-members.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl-members.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl-members.html index 379cb1e..c7945c0 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl-members.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl-members.html @@ -100,11 +100,10 @@ $(document).ready(function(){initNavTree('classproton_1_1ssl.html','');}); <tr><td class="entry"><a class="el" href="classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4aec34b0b90541576a22697631105dc847">NEW</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4">resume_status</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4a6a8b4831d126ce349ac966f2f469413f">REUSED</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1ssl.html#aab73a626b87b792e31ff0eee531fbcb2">ssl</a>()</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4a6ce26a62afab55d7606ad4e92428b30c">UNKNOWN</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1ssl.html#abe68233596c90fd29d934854560ff5f3">verify_mode</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> - <tr><td class="entry"><a class="el" href="classproton_1_1ssl.html#abe68233596c90fd29d934854560ff5f3adb9333f2461b9f65dcb7346a8ceb185c">VERIFY_PEER</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> - <tr class="even"><td class="entry"><a class="el" href="classproton_1_1ssl.html#abe68233596c90fd29d934854560ff5f3a57807a2e5ed5e9858db1e84f24e91a0a">VERIFY_PEER_NAME</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4a6ce26a62afab55d7606ad4e92428b30c">UNKNOWN</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1ssl.html#abe68233596c90fd29d934854560ff5f3">verify_mode</a> enum name</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classproton_1_1ssl.html#abe68233596c90fd29d934854560ff5f3adb9333f2461b9f65dcb7346a8ceb185c">VERIFY_PEER</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classproton_1_1ssl.html#abe68233596c90fd29d934854560ff5f3a57807a2e5ed5e9858db1e84f24e91a0a">VERIFY_PEER_NAME</a> enum value</td><td class="entry"><a class="el" href="classproton_1_1ssl.html">ssl</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.html index 463c6ae..9e61d11 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.html @@ -91,7 +91,6 @@ $(document).ready(function(){initNavTree('classproton_1_1ssl.html','');}); <div class="header"> <div class="summary"> <a href="#pub-types">Public Types</a> | -<a href="#pub-methods">Public Member Functions</a> | <a href="classproton_1_1ssl-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">ssl</div> </div> @@ -117,13 +116,6 @@ Public Types</h2></td></tr> }<tr class="memdesc:a0d3f14f27a1e5af0a5f378fc1a8a8de4"><td class="mdescLeft"> </td><td class="mdescRight">Outcome specifier for an attempted session resume. <a href="classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4">More...</a><br /></td></tr> </td></tr> <tr class="separator:a0d3f14f27a1e5af0a5f378fc1a8a8de4"><td class="memSeparator" colspan="2"> </td></tr> -</table><table class="memberdecls"> -<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> -Public Member Functions</h2></td></tr> -<tr class="memitem:aab73a626b87b792e31ff0eee531fbcb2"><td class="memItemLeft" align="right" valign="top"><a id="aab73a626b87b792e31ff0eee531fbcb2"></a> - </td><td class="memItemRight" valign="bottom"><a class="el" href="classproton_1_1ssl.html#aab73a626b87b792e31ff0eee531fbcb2">ssl</a> ()</td></tr> -<tr class="memdesc:aab73a626b87b792e31ff0eee531fbcb2"><td class="mdescLeft"> </td><td class="mdescRight">Create an empty ssl object. <br /></td></tr> -<tr class="separator:aab73a626b87b792e31ff0eee531fbcb2"><td class="memSeparator" colspan="2"> </td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>SSL information. </p> http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.js ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.js b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.js index 79f0ca4..c78e1da 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.js +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1ssl.js @@ -9,6 +9,5 @@ var classproton_1_1ssl = [ "UNKNOWN", "classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4a6ce26a62afab55d7606ad4e92428b30c", null ], [ "NEW", "classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4aec34b0b90541576a22697631105dc847", null ], [ "REUSED", "classproton_1_1ssl.html#a0d3f14f27a1e5af0a5f378fc1a8a8de4a6a8b4831d126ce349ac966f2f469413f", null ] - ] ], - [ "ssl", "classproton_1_1ssl.html#aab73a626b87b792e31ff0eee531fbcb2", null ] + ] ] ]; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/qpid-site/blob/701caf21/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1symbol.html ---------------------------------------------------------------------- diff --git a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1symbol.html b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1symbol.html index 24cd03e..22bfc3a 100755 --- a/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1symbol.html +++ b/content/releases/qpid-proton-master/proton/cpp/api/classproton_1_1symbol.html @@ -129,7 +129,7 @@ template<class Iter > </td></tr> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>A string that represents the AMQP symbol type. </p> <p>A symbol can contain only 7-bit ASCII characters. </p> -<dl><dt><b>Examples: </b></dt><dd><a class="el" href="message_properties_8cpp-example.html#_a3">message_properties.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a13">service_bus.cpp</a>.</dd> +<dl><dt><b>Examples: </b></dt><dd><a class="el" href="message_properties_8cpp-example.html#_a3">message_properties.cpp</a>, and <a class="el" href="service_bus_8cpp-example.html#_a14">service_bus.cpp</a>.</dd> </dl></div><hr/>The documentation for this class was generated from the following file:<ul> <li>proton/<a class="el" href="symbol_8hpp_source.html">symbol.hpp</a></li> </ul> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
