Workers provide a simple means for web content to run scripts in background threads. Once created, a worker can send messages to the spawning task by posting messages to an event handler specified by the creator.
2
votes
1answer
287 views
Running window.crypto.getRandomValues() from inside a Web Worker
I'm at my wit's end here. Is there any way to do this, knowing that web workers can't access the window object? Please help!
3
votes
1answer
131 views
Limiting Web Worker CPU Utilization?
I'm looking at writing a long running CPU intensive operation using Web Workers and it does seem to be possible to push a client's CPU to 100% with these. (See Can Web Workers utilize 100% of a ...
4
votes
1answer
176 views
Do Web Workers Increase (or Decrease) Security?
Do web workers alleviate or intensify any of JavaScript's and the Browser Environment's known security issues?
1
vote
1answer
115 views
How to create a new function on window or self(which has assigned interface Window by lib.d.ts)?
obviously I am trying to get facebooks async init working. Doing it, I need to create a function on object window called "fbAsyncInit". I am having simillar problem, when writing web workers, because ...
6
votes
1answer
532 views
Pass large amounts of data between web worker and main thread
Is there a way to pass large amounts of data (multiple MB) between a web worker and the main thread? I work in a project where I need to download files, modify them a bit and then somehow let the user ...
2
votes
1answer
74 views
DOM-like APIs for HTML string content inside a web worker
Is there any library that could help with html string manipulation inside a web worker ?
What I'd like to be able to do is, inside a worker, have sizzle-type selector tool that would allow me to do ...
2
votes
1answer
417 views
SECURITY_ERR: DOM Exception 18 with Web Workers
I was getting an error SECURITY_ERR: DOM Exception 18 when I deployed to my production server.
I narrowed it down to the Web Worker request.
2
votes
0answers
358 views
Javascript Web Workers File Upload
I am trying to make a html uploader for very large files using HTML5 and Web Workers. Atm it uploads slowly but consumes alot of memory. I think it is transferring the whole file to the memory when it ...
2
votes
0answers
242 views
RequireJS module with web worker in library
As with most use cases of web workers, I've got a piece of code that can potentially take a while to run - it builds up an Excel worksheet based on a bunch of data. But, as workbooks can have multiple ...
1
vote
0answers
248 views
Reasons to move the WebSockets into a Worker Thread
I am running some tests with WebSockets.
For the test I used the Alchemy-Websockets .NET based server.
The web application open several windows and it used to monitor different services and ...
0
votes
1answer
111 views
Javascript not resolving worker path relative to current script
I have a script at http://localhost/js/foo.js which needs to spawn a Web Worker from the file http://localhost/js/fooWorker.js. I assumed I could just do something like this:
var worker = new ...
0
votes
1answer
121 views
Can I pass parameters to .js function when I create the new Web Workers object?
When I create a web workers like the following...
var w = new Worker("./Scripts/sample.js");
sample.js want to some parameters from the caller!!
Possible?
1
vote
1answer
136 views
Is is possible to catch errors when creating a web worker?
Edit: Rephrased the title (right below) and added error listener to specify further the issue.
Is is possible to catch if the creation of a web worker if failing ?
In the example below there is in ...
-1
votes
1answer
167 views
upload web worker with javascript [closed]
Can anyone give me source code of javascript for an upload function using a javascript webworker? i searched everywhere and couldnt find a good solution.
I did find though a couple of usefull links on ...
0
votes
0answers
37 views
Referencing web resource from another web resource (html5 web worker and asp net)
I have a problem that I can not solve and am in need of an advice.
I am using web workers for html5 file upload and need to pass a javascript file reference to the worker's constructor:
...
2
votes
3answers
361 views
IndexedDB synchronous api + web workers - what's the point?
The IndexedDB's syncronous API is intented to be used inside a Web worker:
The synchronous API is intended to be used only inside of Web Workers.
But since theres an ansyncronous API, whats the ...
0
votes
0answers
40 views
Auto-detect screenY/screenTop change? (trying to avoid interval)
I'm trying to detect if someone has physically moved their browser. However while it's easy to detect if someone has resized or minimized their window, detecting the actual movement is extremely ...
1
vote
1answer
141 views
new SharedWorker(“whatever.js”) returns an error?
Spawning a WebWorker with new Worker("whatever.js") works fine, but new SharedWorker("whatever.js") returns the error: ReferenceError: SharedWorker is not defined
What's wrong with it?
Also I have ...
1
vote
1answer
55 views
Web Worker Plugin Access
Is there a way to either create or somehow access a browser plugin from a web worker instance? What I am trying to do is to be able to access a Dymo label plugin from a web worker but the navigator ...
1
vote
1answer
308 views
Web Workers support in browsers
All,
We were happily chugging along with web workers, content with side-lining any browser without web workers support, until today when we realised that Chrome doesn't support nested web workers ...
4
votes
0answers
41 views
Are web workers preemptive or not?
I guess web workers are not preemptive. Otherwise I do not understand how they can be terminated with terminate API. Is it correct ?
2
votes
3answers
245 views
Chrome not loading latest version of web worker script (runs a cached version)
If I edit my web worker script and refresh the page, the web worker script is a cached version. I am reasonably confident it is not my webserver, because I can immediately load the latest copies of ...
3
votes
1answer
241 views
Memory leak when transferring image data to Web Worker in Chrome
I'm repeatedly passing image data from an HTML5 canvas to a Web Worker using a Transferrable Object --
Condensed Code:
var worker = new Worker("test.js");
setInterval(function () {
var data = ...
1
vote
2answers
187 views
Different server request behaviour within web workers
Within our web application we are using the following method of server communication
XMLHttpRequest
We are sending the same content/data in both cases but the XMLHttpRequest is ran inside a ...
4
votes
1answer
278 views
How can I use HTML5 Web Workers with Google Closure Tools?
I need to do some computationally intensive stuff in the background of my app and I've been learning about HTML5 Web Workers. Is there an integrated way to do this with Google Closure Tools? I found ...
5
votes
3answers
281 views
Render RGBA to PNG in pure JavaScript?
Let's say I have a canvas element, and I need to turn the image on the canvas into a PNG or JPEG. Of course, I can simply use canvas.toDataURL, but the problem is that I need to do this a twenty times ...
1
vote
1answer
344 views
How to pass functions to JavaScript Web Worker
I would like to pass a function (or functions) via a postMessage() to a web worker, because I can't refer to regular files.
To kick the web worker off, I am passing an object URL (created from a ...
3
votes
1answer
243 views
Passing the document object to a web worker
I know that web workers cant access the dom directly. But would it be a bad idea to do something like this:
var doc = $(document);
var worker = new Worker("worker.js");
worker.postMessage({ cmd: ...
6
votes
1answer
472 views
Can Web Workers utilize 100% of a multi-core CPU?
I've been trying to find out just how capable web workers are of distributing processor load. I've yet to find any demos that seem to be able to get my quad core 2600k to even 50%, let alone 100%.
...
0
votes
1answer
596 views
How can access websockets in webworkers?
I need to send websocket calls from webworkers, how can i get it. I dont think so is there any support from the user agents. if support available please give me an example to do this.
sample stuff ...
1
vote
2answers
178 views
Is it possible to safely use eval in a web worker to execute arbitrary user code?
Is it possible to offload custom user code that would be evaled to a Web Worker in a safe way?
The "only communicate" with strings feature of the Web Workers look promising but eval'ing user code is ...
0
votes
1answer
182 views
javascript promises and futures similar to C++
are there any javascript libraries which provide promises and futures syntactically similar to that of C++ ones. basically we want to use them in webworkers, I dont want a callback interface. I want ...
1
vote
2answers
144 views
HTML5 Webworkers - All One File
Currently i have the following code:
This is within my HTML document.
<script language="JavaScript" type="text/javascript" src="workerTest.js"></script>
Now from my understanding and ...
2
votes
1answer
323 views
What is the proper way to shedule Celery tasks to maximize worker productivity?
I'm developing a system that will build a huge n-gram model for an AI project.
My pipeline is the following:
Resource input --> Fetch data --> Parsers --> Trainer
The resource input (basically URLs ...
2
votes
1answer
119 views
Get instance of XSLTProcessor in webworker?
I've been successfully transforming XML document with XSLT, I'm initiating the process from JavaScript. Since the XML input is fairly large, my plan was to start the XSLT transformation within a ...
1
vote
2answers
248 views
HTML5 navigator.geolocation in Web Workers
I am trying to move my code for navigator.geolocation in a web worker.
I tried it with Chrome and Safari but getting 'undefined' on
var isGPSSupported = navigator.geolocation;
Frustrated... they ...
0
votes
1answer
192 views
how to make an html5 game multiplayer--online [closed]
I am wondering where to start--I was pointed in the direction of web workers but I am not exactly sure how that works, I was hoping someone could give me advice or tell me how to start it off ...
3
votes
1answer
400 views
Can I load AMD modules inside a webworker?
I am trying out webworkers for making my computationally heavy Javascript truly parallel. However, I have a problem in that all of my javascript files are AMD modules. Can I use requirejs inside of ...
1
vote
1answer
354 views
Build an app on Chrome browser e not with the stock android browser?
I'm developing an app with phonegap on Android.
The stock browser on Android not support "Web Worker" while Chrome support it.
My question is:
is it possible build my app with eclipse directly with ...
4
votes
1answer
766 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?
8
votes
1answer
1k views
Web Workers - Transferable Objects for JSON
HTML 5 Web workers are very slow when using worker.postMessage on a large JSON object.
I'm trying to figure out how to transfer a JSON Object to a web worker - using the 'Transferable Objects' types ...
4
votes
4answers
751 views
Why the Web Worker can't call a function?
we can use the web worker in HTML5 like this:
var worker = new Worker('worker.js');
but why we can't call a function like this?
var worker = new Worker(function(){
//do something
});
0
votes
2answers
86 views
Web worker that works on Firefox throws strange error on google chrome
In my web worker I have a line where I set the onmessage handler like so:
onmessage = function() {/*...*/}
This works perfectly in Firefox, but in google chrome I get the following error:
Uncaught ...
1
vote
1answer
358 views
Javascript - Wait for web worker to finish?
I am implementing the LDA algorithm of Topic Modelling in javascript as a part of a project. Upon the click of a button, the function to perform LDA is called. However since this is a very heavy task, ...
4
votes
2answers
435 views
How to deal with heavy-load processing of displayed data in the browser
The context
We have an Ember-based app which handles large amount of structured data (Business process models).
Important! We would really like to keep our app offline-able, as far as possible.
...
1
vote
1answer
765 views
Global variable in Web worker
Sorry, Two ques:
1)So I am using this Web worker which has a Global variable declared in it. Can I access the same(Global variable in worker 1) in the newly spawned web worker(worker 2)?
And one ...
2
votes
1answer
170 views
Web Worker loading of absolute URL
Can I load a web worker script from an absolute URL? - The answer over here is no.
However there is a hack I found to do it anyway:
var worker; //= new Worker('http://xyz/FSWorker.js');
var xhr = ...
0
votes
2answers
1k views
XMLHttpRequest to webservice not working in web worker
The code below runs perfectly if called from main javascript, but it does not run in the web worker.
function getSpecData(detailLvl, startWeek, endWeek, mkt) {
var params = { "detailLvl": ...
2
votes
3answers
149 views
Should I use self or window to reference the global scope?
As a style convention I like to be explicit when I'm accessing variables in the global scope, preferring
window.example = "Hello";
window.alert(window.example);
to the less verbose
example = ...
3
votes
1answer
270 views
Best XHR solution, for use with workers?
(If there is a question which answers this, please let me know)
I'm looking for suggestions for cross-browser XHR support, with-in workers.
In the normal VM, I usually use jQ for XHR stuff. It seems ...


