Tagged Questions

17
votes
2answers
2k views

What are the use-cases for Web Workers?

I am looking for real-world scenarious for using Web Workers API.
7
votes
1answer
217 views

Is there a standard mechanism for detecting if a JavaScript is executing as a WebWorker?

A WebWorker executes with a scope completely separate from the 'window' context of traditional JavaScript. Is there a standard way for a script to determine if it is, itself, being executed as a ...
6
votes
1answer
282 views

Memory leakage in Chrome using Shared Worker?

I have a web page that starts a HTML5 SharedWorker script. Chrome memory usage increases every time this page is reloaded (hitting F5). The worker script is very simple. Every second (using ...
6
votes
3answers
421 views

What's the difference between Shared Worker and Worker in HTML5?

After reading this blog post: http://www.sitepoint.com/javascript-shared-web-workers-html5/ I don't get it. What's the difference between a Worker and a SharedWorker?
6
votes
1answer
634 views

multi-core programming using JavaScript?

So I have this seriously recursive function that I would like to use with my code. The issue is it doesn't really take advantage of dual core machines because js is single threaded. I have tried using ...
5
votes
1answer
124 views

How to do worker-to-worker communication?

I'm experimenting with web workers, and was wondering how well they would deal with embarassingly parallell problems. I therefore implemented Connaway's Game of Life. (To have a bit more fun than ...
5
votes
1answer
602 views

Why was HTML5 Web Workers support removed from the Android browser in versions 2.2 and up?

I'm trying to learn something about JavaScript threading. And from a tutorial I learned about HTML5 API web worker. This API enables JavaScript multi-threading. So I start to figure out how and where ...
4
votes
1answer
55 views

Do Shared Web Workers persist across a single page reload, link navigation

Shared Web Workers are designed to allow multiple pages from the same site (origin) to share a single Web Worker. However, it's not clear to me from the spec (or other tutorials and information on ...
4
votes
2answers
83 views

What happens to an HTML5 web worker thread when the tab is closed while it's running?

I'm wondering what happens when a user closes the tab which spawned the worker thread, while the thread is still working. Does it halt everything? If so, is there a way to run the thread in the ...
4
votes
3answers
239 views

What browsers currently support Web Workers?

I dug around, but couldn't find an authoritative list. Thanks!
4
votes
1answer
134 views

Do web workers terminate when the user navigates to a new page (within the same application)

For example, can i offload a task and allow the user to keep surfing my site whilst the javascript runs? It seems if I navigate away from the page, the worker terminates.
3
votes
2answers
95 views

Identifying when a JS script is running as a Worker

I have a script which can be run either directly or, when available in the browser, as a Web Worker. I'd like to run a portion of this script only when run as a worker; so my question is, how can a ...
3
votes
2answers
501 views

Accessing localStorage from a webWorker

Can a webWroker access the localStorage? if not why not? is it problematic from a security stand point?
3
votes
4answers
1k views

HTML Web Worker and Jquery Ajax call

I'm wondering if I can use Jquery inside the web-worker file. Google Chrome gives me this error: "Uncaught ReferenceError: $ is not defined". Here is the code: The parent file: var loader = new ...
3
votes
1answer
266 views

Does it make sense to use Web Workers for a game?

I am working on a game that has AI logic, movement, etc and drawing. Does it make sense to calculate moving and AI logic using Web Workers? But how do I do that -- because the workers need to know so ...
3
votes
1answer
532 views

Are Web Workers themselves allowed to have Web Worker threads?

This would seem to be the case in Firefox 3.5+, there I can instantiate a Web Worker, and inside the worker, spawn another thread. However, the code will not work in Google Chrome, leading me to ...
2
votes
1answer
146 views

Using WebGL from inside a Web Worker: is it possible ? How?

I opened this matrix multiplication benchmarks and my browser (Firefox 7.0.1) froze until the benchmarks finished (I opened the page in an old Asus EeePC 1000H). I heard that web workers were ...
2
votes
1answer
947 views

'Uncaught Error: DATA_CLONE_ERR: DOM Exception 25' thrown by web worker

So I'm creating a web worker: var arrayit = function(obj) { return Array.prototype.slice.call(obj); }; work = arrayit(images); console.log(work); //work = images.push.apply( images, array ); // ...
2
votes
1answer
302 views

web worker console.log

Is it just me, or is console.log() too much to ask for from HTML5 web workers? I know that manipulating the DOM is blocked because it is potentially dangerous, but is there really any possibility ...
2
votes
5answers
228 views

Multithreading in JavaScript for game development

I am thinking of developing a game in pure JavaScript and html5, without using any third party plugins. The problem I am facing is that I cannot find a way to separate different "modules" of the game ...
1
vote
1answer
25 views

javascript and webworker

Why can't a javascript file in a WebWorker access document object, when a normal external javascript file can access the document object? Or can a WebWorker access a document object? Because in ...
1
vote
0answers
27 views

What local storage in html5 can I use safely in the browser ui thread and the web worker thread

I've been trying to use web sql database api in webkit based browsers. I have been using the async api in the main ui thread and a web worker. Both threads access the same database (which as you know ...
1
vote
2answers
41 views

Image previews and web workers

Is it possible to use the filereader api within a web worker to load images i.e. for previews/thumbails, therefore preventing the main ui thread from blocking. Something like this but wrapping the ...
1
vote
2answers
146 views

Web worker dealing with imageData working with Firefox but not Chrome

When I run code that deals with imageData being passed to a web worker and then back, then Firefox works great but Chrome gives "Uncaught Error: DATA_CLONE_ERR: DOM Exception 25" Searching google ...
1
vote
0answers
141 views

Possible memory leaks using Web Workers (Garbage Collector)

I have an app which calls web worker after the button click. The calculations are moved to worker to relieve UI and make it responsive to user actions while calculations are being made. Everything ...
1
vote
1answer
244 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 ...
1
vote
1answer
80 views

Why are web workers not allowed to modify the dom

I know web workers work as a separate thread than the UI thread but i dont understand why they are not allowed to modify the DOM. I mean that you can allow inter thread communication and keep the DOM ...
1
vote
1answer
215 views

Document-free canvas for Web Worker

Is there any implementation of canvas without document.createElement('canvas')? I want to work with canvas in web worker but i can't pass canvas data to it via worker.postMessage(), because canvas is ...
1
vote
1answer
126 views

How can I HTML5 Web Worker return more than just one string?

At the moment, my Web Worker just returns a message as a string. Is it possible to return an object? Thank you!
1
vote
2answers
61 views

Webworker is not running

I have the following code: var stressWorker = new Worker("./test/webworkers/worker.js"); stressWorker.onmessage = function(event){ alert(event.data); }; stressWorker.onerror = function(event){ ...
1
vote
2answers
525 views

HTML 5 Web Worker Example doesn't work in 8.0.552.231

I'm following this example at: http://www.whatwg.org/specs/web-workers/current-work/ page.html <!DOCTYPE HTML> <html> <head> <title>Worker example: One-core ...
1
vote
1answer
274 views

has a web works “hello world ” demo using html5

this is the demo, and the code is : main.js: var worker = new Worker('extra_work.js'); worker.onmessage = function(event) { alert(event.data); }; extra_work.js: self.onmessage = ...
1
vote
1answer
376 views

Force reload/prevent cache of Web Workers

I've noticed that most browsers (Chrome in particular) seem to cache web worker scripts even after you force the page to reload (SHIFT+F5, etc). The only reliable way I've found to force the cache to ...
1
vote
2answers
137 views

Web Workers and Sparklines

I know that Web Workers don't have access to the DOM, but I was wondering if there was any way they could render a Sparkline graph behind the scenes and pass it back. If not, is there ANY way I could ...
1
vote
2answers
197 views

Race-condition with web workers when setting onmessage handler?

Please consider the following code and the explanation from this Mozilla tutorial "Using web workers": var myWorker = new Worker('my_worker.js'); myWorker.onmessage = function(event) { ...
1
vote
2answers
199 views

How to prevent HTML5 Web Workers from locking up thus correctly responding to messages from parent

I'm using web workers to do some CPU intensive work but have the requirement that the worker will respond to messages from the parent script while the worker is still processing. The worker however ...
1
vote
4answers
2k views

Sharing variables between web workers? [global variables?]

Is there any way for me to share a variable between two web workers? (Web workers are basically threads in Javascript) In languages like c# you have: public static string message = ""; static void ...
0
votes
1answer
45 views

Drawing in workers

I am trying to draw in a web worker using html5 canvas. The worker doesn't have access to the DOM so I can't draw on a canvas from the web worker. This other stack overflow question suggests I can ...
0
votes
1answer
81 views

HTML5 and Web Workers on IOS

I'm working on building IOS applications using jQuery and HTML5. Recently I learned that HTML5 Web Workers provide a great deal of flexibility for Javascript to perform multi-threaded programming, ...
0
votes
1answer
51 views

Why can't I use this in (JavaScript) Worker when defining an object?

Coming from the Java (OOP) world, I am used to classes, inheritance and multi threading. Now for my little walkabout in the JavaScript domain, I try to utilize these paradigms and patterns where ...
0
votes
1answer
84 views

Mobile browser webworker & offline storage support

Does any mobile browser (Android, ios) support Webworker and offline storage? Is there any restriction when compared to desktop browsers (Size, resource etc)?
0
votes
1answer
54 views

What is wrong with this WebWorker (no errors, but console.log are not reached)

I have the following code, trying to test out WebWorkers. I have an index.html file that looks like this: <html> <head></head> <body> <script ...
0
votes
1answer
99 views

Use Web Worker to getImageData from a file

Is it possible to decode the image data from a file in a Web Worker so that I can pass it to the main thread and use putImageData. This is presumably faster than just calling drawImage.
0
votes
1answer
151 views

HTML5 web worker error “Uncaught SyntaxError: Not enough arguments” when using multiple postMessage calls

I have a single web worker which makes about 30 AJAX requests and after each request it sends a message to the UI using postMessage to log the progress. For example: postMessage({type: "progress", ...