Re: Asynchronous work - what are our options?

2012-09-11 Thread Andrea Boscolo
Elemental should support it. And there are also other wrappers here and there that work too. On Tuesday, September 11, 2012 5:31:33 AM UTC+2, markww wrote: Hi, I was hoping to do some asynchronous work, though I do not believe this is possible (due to the limitations of javascript). The

Asynchronous work - what are our options?

2012-09-10 Thread markww
Hi, I was hoping to do some asynchronous work, though I do not believe this is possible (due to the limitations of javascript). The work I need to do is not an http request, it's computing some AI stuff for a game. If I understand correctly: 1. RPC is reserved only for http communication.

Re: Asynchronous work - what are our options?

2012-09-10 Thread Brandon Donnelson
I'd use web workers. If you can't find a wrapper library, you can call the native javascript through jsni methods. Speed tracers has a nice example: http://code.google.com/p/speedtracer/source/browse/trunk/src/client/ui/src/com/google/gwt/webworker/ -- You received this message because you