Tagged Questions
2
votes
1answer
101 views
GWT web workers unflattenKeylistIntoAnswers not defined
I have a problem running my web workers in GWT in case i build them for more than one agent.
I receive an error that unflattenKeylistIntoAnswers function is not defined.
And indeed, the function is ...
4
votes
1answer
805 views
WebWorkers in GWT Elemental
Workers JSNI at GWT svn
It looks like WebWorkers have not been fully implemented yet. I know that elemental is in early stage of development but might be someone already have tried to make it works?
0
votes
1answer
88 views
GWT class members naming
I'm using GWT.
When it is compiling the Java code to Javascript code, sometimes it changes some of the members' names.
for example:
private int height;
becomes in the JS:
height_0;
Example:
public ...
3
votes
1answer
556 views
How do I get web workers to work in GWT?
I've searched and searched and I can't find any clear examples online. I'd like to do this as easily and simply as possible. Can anyone provide information on how to use web workers in GWT?
3
votes
2answers
1k views
Web-Worker with GWT
What's the simplest way of getting a Web-Worker thread loaded with a GWT module?
I am not referring to getting support for Web-Worker in GWT (there are libraries for that) but rather how would ...