Tagged Questions
4
votes
2answers
413 views
JavaScript: Web Worker and Typed Arrays
I have a web worker (started with new Worker()) that does some processing and is supposed to return a Float32Array.
It seems however that after the worker postMessage()s the data, it goes through ...
1
vote
1answer
116 views
Deserialize big data JSON from a REST request into objects without locking up the browser?
In a rich internet app:
User requests a resource
Server responds with a huge JSON response
Client (running in browser) must process the JSON converting it to the many objects which make up the ...
0
votes
1answer
77 views
JSon to Asp.Net inside a Web Worker. Can't find the method inside the Controller
I'm sending a JSon to my Asp.Net MVC 3 Controller that is inside a Web Worker (using jquery-hive).
At the PostMessage, I can capture a Asp.Net error telling me that it find the controller but has no ...
0
votes
1answer
97 views
JSON object becomes 'null'
I've been having trouble with my html5 web worker. The web worker postMessage()'s a JSON object to the document-level javascript that invoked the worker, which comes with an onmessage() function.
...
0
votes
3answers
445 views
How do you encode an Object in a Web Worker for it to be passed via postMessage?
Internally, Firefox will JSON encode an object passed via postMessage to and from the Web Worker. However, this only works in Trunk builds of Firefox (3.6+) and not in Firefox 3.5, so the question is ...