Deployed d26664f with MkDocs version: 1.1.2

This commit is contained in:
2021-03-23 14:34:32 +00:00
parent e7d519fee7
commit b6b8e426a7
5 changed files with 13 additions and 3 deletions

View File

@ -95,6 +95,10 @@
<li class="nav-item" data-level="1"><a href="#changelog" class="nav-link">Changelog</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="2"><a href="#1113-2021-03-23" class="nav-link">[11.1.3] - 2021-03-23</a>
<ul class="nav flex-column">
</ul>
</li>
<li class="nav-item" data-level="2"><a href="#1112-2021-03-22" class="nav-link">[11.1.2] - 2021-03-22</a>
<ul class="nav flex-column">
</ul>
@ -1128,6 +1132,8 @@
<h1 id="changelog">Changelog</h1>
<p>All changes to this project will be documented in this file.</p>
<h2 id="1113-2021-03-23">[11.1.3] - 2021-03-23</h2>
<p>(ixwebsocket) New option to set the min wait between reconnection attempts. Still default to 1ms. (setMinWaitBetweenReconnectionRetries).</p>
<h2 id="1112-2021-03-22">[11.1.2] - 2021-03-22</h2>
<p>(ws) initialize maxWaitBetweenReconnectionRetries to a non zero value ; a zero value was causing spurious reconnections attempts</p>
<h2 id="1111-2021-03-20">[11.1.1] - 2021-03-20</h2>

View File

@ -261,5 +261,5 @@ webSocket.send(&quot;hello world&quot;);
<!--
MkDocs version : 1.1.2
Build Date UTC : 2021-03-23 04:10:55.299999+00:00
Build Date UTC : 2021-03-23 14:34:32.028094+00:00
-->

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -330,9 +330,13 @@ Wait time(ms): 6400
#retries: 8
Wait time(ms): 10000
</code></pre>
<p>The waiting time is capped by default at 10s between 2 attempts, but that value can be changed and queried.</p>
<p>The waiting time is capped by default at 10s between 2 attempts, but that value
can be changed and queried. The minimum waiting time can also be set.</p>
<pre><code class="language-cpp">webSocket.setMaxWaitBetweenReconnectionRetries(5 * 1000); // 5000ms = 5s
uint32_t m = webSocket.getMaxWaitBetweenReconnectionRetries();
webSocket.setMinWaitBetweenReconnectionRetries(1000); // 1000ms = 1s
uint32_t m = webSocket.getMinWaitBetweenReconnectionRetries();
</code></pre>
<h2 id="handshake-timeout">Handshake timeout</h2>
<p>You can control how long to wait until timing out while waiting for the websocket handshake to be performed.</p>