Hi,
in the demo, there is threads.ur which contains
fun main () =
buf <- Buffer.create;
let
fun loop prefix delay =
let
fun loop' n =
Buffer.write buf (prefix ^ ": Message #" ^ show n);
sleep delay;
loop' (n + 1)
in
loop'
end
in
return <xml><body onload={spawn (loop "A" 5000 0); spawn (loop
"B" 3000 100)}>
<dyn signal={Buffer.render buf}/>
</body></xml>
end
The spawned processes run in the browser, according to the description.
Is it possible to run threads in the server? How?
- Gergely
_______________________________________________
Ur mailing list
[email protected]
http://www.impredicative.com/cgi-bin/mailman/listinfo/ur