<br><div class="gmail_quote">2009/10/26 Lukas Renggli <span dir="ltr">&lt;<a href="mailto:renggli@gmail.com">renggli@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">&gt; Is there a way to set up a periodic event on the Seaside server independent<br>
&gt; of any clients? (I guess a Kom server, in this case.)<br>
<br>
</div>No, unless you expect periodic requests. Seaside only gains control if<br>
somebody requests something.<br>
<br>
It is however easy in Smalltalk to have a background thread do<br>
something from time to time:<br>
<br>
   [ [ (Delay forDuration: 1 minute) wait. &quot;do something&quot; ] repeat ] fork<br>
<div class="im"><br>
There is also a package that allows you to schedule events in more<br>
sophisticated ways, but I forgot how it is called.<br></div></blockquote><div><br><a title="static project url" href="http://www.squeaksource.com/Scheduler.html">http://www.squeaksource.com/Scheduler.html</a><br> <br>Hernán<br>
</div></div>