aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-05-07 09:23:12 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-05-07 09:23:12 +0200
commit45a579cdb43917e648e2e801432f6e7820004614 (patch)
treef7590e7d8d22fe62f9022bf6cb1ae442dccc5861 /docs
parent9c0a1bfc6eea9a2e68de7206d8d5af5188f22e59 (diff)
downloadlanes-45a579cdb43917e648e2e801432f6e7820004614.tar.gz
lanes-45a579cdb43917e648e2e801432f6e7820004614.tar.bz2
lanes-45a579cdb43917e648e2e801432f6e7820004614.zip
API changes
* lanes.sleep accepts 'indefinitely'. * settings.with_timers is false by default
Diffstat (limited to 'docs')
-rw-r--r--docs/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/index.html b/docs/index.html
index f08947e..e811074 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -311,7 +311,7 @@
311 </td> 311 </td>
312 <td> 312 <td>
313 If equal to <tt>false</tt> or <tt>nil</tt>, Lanes doesn't start the timer service, and the associated API will be absent from the interface (see below). 313 If equal to <tt>false</tt> or <tt>nil</tt>, Lanes doesn't start the timer service, and the associated API will be absent from the interface (see below).
314 Default is <tt>true</tt>. 314 Default is <tt>false</tt>.
315 </td> 315 </td>
316 </tr> 316 </tr>
317 317
@@ -1328,7 +1328,7 @@ events to a common Linda, but... :).</font>
1328</pre></td></tr></table> 1328</pre></td></tr></table>
1329 1329
1330<p> 1330<p>
1331 Timers are implemented as a lane. They can be disabled by setting "<tt><a href="#with_timers">with_timers</a></tt>" to <tt>nil</tt> or <tt>false</tt> to <tt>lanes.configure()</tt>. 1331 Timers are implemented as a lane. They can be enabled by setting "<tt><a href="#with_timers">with_timers</a></tt>" to <tt>true</tt> in <tt>lanes.configure()</tt> settings.
1332</p> 1332</p>
1333 1333
1334<p> 1334<p>
@@ -1395,7 +1395,7 @@ events to a common Linda, but... :).</font>
1395</p> 1395</p>
1396 1396
1397<table border="1" bgcolor="#E0E0FF" cellpadding="10" style="width:50%"><tr><td><pre> 1397<table border="1" bgcolor="#E0E0FF" cellpadding="10" style="width:50%"><tr><td><pre>
1398 void = lanes.sleep([seconds|false]) 1398 void = lanes.sleep(['indefinitely'|seconds|false])
1399</pre></td></tr></table> 1399</pre></td></tr></table>
1400 1400
1401<p> 1401<p>