0
votes
1answer
18 views

Is Three.js Web Worker compatible? importScripts(“three.js”) gives error

It complains on importScripts("three.js"): Uncaught ReferenceError: window is not defined: for ( var x = 0; x < vendors.length && !window.requestAnimationFrame; ++ x ) { And it seems ...
0
votes
1answer
24 views

AngularJS and web workers

How can angularJS use web workers to run processes in the background? Is there any pattern I should follow on doing this? Currently, I am using a service that has the model in a separate web worker. ...
0
votes
1answer
26 views

Passing custom objects to webworker cause loosing prototype information

I try to export data from three.js mesh to string in webworker. I have troubles with loosing prototype information. (this isn't problem with three.js, but with web-workers. Generally I try to send ...
0
votes
1answer
23 views

Are web workers a secure way to sandbox untrusted javascript code

I was wondering if a web worker would be a secure way to sandbox untrusted javascript code. Let's say for example in the context of a drawing application where developers can implement new drawing ...
0
votes
2answers
29 views

Terminating a web worker

I have this web worker that appends some paragraphs to a div and its like this var worker1 = new Worker('many.js'); var worker2 = new Worker('many.js'); var worker3 = new Worker('many.js'); var ...
1
vote
1answer
47 views

javascript: how to keep a transaction (WebSql) alive

I have a Worker in which I want to execute my sql queries. But, and that is my problem, I want all these queries to be executed within the same transaction. This is how I have my (not working) Worker ...
0
votes
1answer
35 views

Debugging and profiling web workers

I am running computations e.g. path-finding in web workers. This can take several seconds and I want to optimise it. Chrome seems to be about 3x faster for my current code, but where the time is ...
0
votes
1answer
63 views

importScripts (web workers)

I have tried to use importScripts to load a second JavaScript file into my web worker, but although no error occurred, it didn't work. I narrowed the problem down to this very simple situation: In ...
8
votes
2answers
182 views

Is there a way to fake a synchronous XHR request?

I'm porting a pile of C++ code to Javascript using the Emscripten system. The C++ code has many calls to fopen which is a synchronous IO call. Within Emscripten, we simulate this using an XHR request ...
1
vote
2answers
62 views

Dart to javascript workers

I'm looking to cross compile a dart script to JS, running in a web workers. My JS script should look like this: myScript.js postMessage("I\'m working before postMessage(\'ali\')."); onmessage = ...
0
votes
0answers
110 views

Using web workers in phonegap

I'm trying to create a HTML5 Web Worker in phonegap, but phonegap doesn't allow me to load a local javascript file at runtime. I get the following error: var web_worker=new Worker('socket-worker.js') ...
0
votes
2answers
54 views

Using transferable objects from a Web Worker

I currently have this code to create a Web Worker: w=new Worker("webwork.js"); w.onmessage=function(event){alert(event.data);} And then the webwork.js code for the Web Worker: ...
0
votes
0answers
86 views

Webworker canvas performance terrible

I'm trying to use webworkers to render parts of the frames for an animated mandelbrot zoomer, since there is a lot of calculating involved, and since this can be easily split up in blocks this should ...
0
votes
0answers
27 views

utf-8 encoding in webworker

In a web application with <meta charset="utf-8"> I get the ID3 tags of mp3 files like this: var reader = new FileReader(); reader.onload = function(onloadEvent) { var mp3Data = new ...
1
vote
1answer
25 views

this._waiting is undefined

I'm trying to write a simple wrapper class for web workers. When one of the defined messages is sent to the webworker, the LayoutBridge assigns a ticket, that is returned when the request has been ...
0
votes
0answers
36 views

How can I share state effectively between Web Workers?

I'm looking at porting a game to HTML5, but I'm running into some problems. The game uses multithreading quite a bit, with rendering running on the main thread and scripts running on worker threads. ...
2
votes
1answer
134 views

Web Worker Memory Leak?

I've been using Chrome's Timeline view to attempt to track down some memory leaks in my page. I've found one particular memory leak that results from instantiating web workers that I can't seem to ...
1
vote
2answers
45 views

Elegantly reattach methods to object in web worker?

I'm playing around with web workers. I have some medium sized data objects which have operations which take a decent amount of time. Web Workers seem like a good way to parallelize those operations ...
0
votes
2answers
53 views

Getting a return value back from a web worker

Right now, I've got this, and it works: var myWebWorker = new Worker('myWebWorker.js'); myWebWorker.onmessage = function (myEvent) { $('#Print').append('Return value: ' + myEvent.data + ...
1
vote
1answer
74 views

How to use jQuery to Parse XML from within a Web Worker Thread

Skimming? Just read what's bold. Howdy friends! I'm building a web application that needs to do some serious XML crunching. I currently have a function that uses jQuery to parse and manipulate ...
1
vote
1answer
47 views

Web Workers - How to achieve exception Handling for importScripts()

I'm using importScripts() in my dedicated Worker to get data from Facebook API using Graph. Occasionally the request appears to time out and Chrome Dev Tools just show a red GET and print the URL that ...
1
vote
1answer
32 views

Reference after posting data from web worker

I thought that the serialisation of objects you send with 'postMessage' from a web worker is made with JSON.serialize and the deserialisation with JSON.parse. But I made a test (in Firefox) with that ...
0
votes
1answer
54 views

Standard functions not working in web worker [duplicate]

I am trying to implement web workers in my application but for some reason functions like alert and console error with undefined. My web worker code: AJAX = new XMLHttpRequest(); AJAX.open("GET", ...
4
votes
1answer
68 views

Passing a Javascript-Object to Web Worker

I have an Object like that: function A(id) { this.id = id; } A.prototype.getId = function() { return this.id; } It is included in a html-page as a file ("objects.js") as well as in the web ...
0
votes
1answer
26 views

Showing error while using Blob

I have used Blob() in javascript to generate an url. This url is supposed to be used in the web worker i.e Worker(). I have written this code: var workerJs = $('#worker').html() var blob = new ...
4
votes
4answers
175 views

Stop execution of function after fixed time in javascript

I need to let a function run for a fixed number of seconds, then terminate. I could use jQuery or web workers, but my attempt at doing it directly faild. Tks for help this now works: startT = new ...
3
votes
1answer
42 views

Is it possible to use web workers with JavaScript that isn't contained in an external file?

I'm trying to use web workers in a way that doesn't require an external file as the code for the worker, is this possible or does a solution already exist to pipe dynamic code into a web workers?
1
vote
0answers
81 views

HTML5 Web Workers - How to share work between threads

I'm pretty new when it comes to JS but I've had a stab at some basic multi-threading after researching the Web Workers API. My attempt below is to abstract the logic for determining the next work unit ...
2
votes
2answers
59 views

Off loading collision detection (and other processor intensive loops) to a WebWorker in JavaScript?

I've been playing about with web workers recently and I managed to off load A* path finding to a worker thread using the following technique... Push a reference to an object onto an array when the ...
0
votes
1answer
121 views

Three.js and web workers weird behavior

I have some strange things going on using web workers in a three.js application. On first load of a new page it looks fine. https://dl.dropbox.com/u/42766757/beforezoom.png But then after a few ...
1
vote
1answer
31 views

Destroying WebWorkers

Is there a way to destroy HTML5 WebWorkers in JavaScript? Here's my situation: I have a web application that generates a decent number of WebWorkers (anywhere between 16 and 32) to optimize some ...
1
vote
1answer
78 views

Spawning large numbers of WebWorkers in Chrome/Firefox

I'm writing a simple JavaScript application that generates a Mandlebrot set fractal in an HTML5 canvas element. The algorithm to generate the graphic is easily parallelizable, so I'm using WebWorkers ...
0
votes
1answer
122 views

Web Worker not working [closed]

I am a new to HTML5. I recently went through the basics of HTML5 but when I went to the intermediate level of coding with HTML5, I came up with a thing called "HTML5 Web Workers". I wrote a simple ...
2
votes
2answers
141 views

Creating WebWorker Throws DOM Exception 18 in Safari 5.1.7

I'm trying to create a webworker and I'm getting a DOM Exception when trying to construct the worker in Safari 5.1.7. This happens on some domains and only in Safari. For example, if you go to CNN.com ...
2
votes
4answers
70 views

Is it possible to optimize two scripts using web workers? [closed]

I'm running two libraries that are dependency aware. What I mean is the order of their execution does not matter. They will detect each other and run in any order. script1.js script2.js Would I ...
1
vote
1answer
215 views

Using web workers with Sencha Touch 2

Premise: A complete Sencha touch/Js noob with a Java background - (5 days) Is it possible to use HTML5 web workers with Sencha Touch? The scenario I have is, I have an app made with Sencha Touch 2 ...
2
votes
1answer
742 views

Uncaught ReferenceError: importScripts is not defined

Why do I keep getting this error? I should be able to use this global function right? http://www.html5rocks.com/en/tutorials/workers/basics/ I'm using chrome. I'm using ...
2
votes
2answers
77 views

Could WebWorkers be used for supercomputer power?

This a general question really, not sure if this is the place for it (it might be deleted as quite general) so please don't heckle (I am just curious). I have been reading up on WebWorkers API and ...
4
votes
1answer
113 views

Enable 'new Function' in a Web Worker with CSP

I'm having trouble getting new Function to work in a Web Worker. I have an HTML page that spawns a Web Worker. This Web Worker executes code through new Function(str). I'm trying to use this in a ...
1
vote
1answer
61 views

HTML5 WebWorker Logic flow

So I have this main js file: var worker = new Worker("../Scripts/worker.js"); worker.onmessage = function (event) { alert("Worker said : " + event.data); }; worker.postMessage("Naruto"); ...
1
vote
1answer
71 views

Advantages of Web Workers and how they were achieved before?

I have read about Web Workers on http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html and I think I understand their purpose, but I am wondering if one of the main purposes of web ...
0
votes
1answer
96 views

Script sharp # with web workers

How can I use web workers from Script sharp? Web workers need a source file, that will not compile in Script sharp because it is not a class, it's just code. Ideas? Nikhilk?
0
votes
1answer
76 views

Javascript web workers: why do I need to postMessage twice to trigger event?

I am a newcomer to Javascript and web programming in general. I am trying to figure out web workers, and have the following code (running in chrome): worker_example.html <!DOCTYPE html> ...
1
vote
0answers
61 views

Creating multiple instances of the same file dynamically in JS (workers)

So I'm basically doing this (simplified) ... var script = '...some JS code...', blob = blob = new Blob([script]), worker = []; for (var i=0; i<10; i++) { worker[i] = new ...
0
votes
1answer
54 views

spawning sub worker returns error

I am spawnning child worker but it is throwing an error "Worker not defined". how can I spawn child worker? Here is my demo getting error.
1
vote
1answer
82 views

how to communicate two webworkers html5?

I am going through webworkers documentation, I cant find any api that support communication between two webworkers. Here is my context, now i need to communicate worker1 with worker2 directly? not ...
2
votes
3answers
297 views

Web Workers communication using MessageChannel HTML5

I would like to implement communication between webworkers. I read the W3C documentation and I found MessageChannel is one of the ways to do it, but while reading MessageChannel I couldn't understand ...
0
votes
1answer
128 views

Load Nodejs Module into A Web Worker

I'm intending to use web worker inside my Node.js application for some concurrent tasks. However since the 'webworker-threads' module follows the implementation of HTML5 web worker, requiring Nodejs ...
2
votes
1answer
218 views

Opinion about synchronous requests in web workers

I want to know what do you think about this. Is recommended to use synchronous requests (XMLHttpRequest) in a web worker? What problems can I find? I have been testing this in my app and I haven't ...
0
votes
0answers
37 views

web worker use case and relationship between each web worker

I have a question about web worker, can or should each web worker task has relations? let say i have 4 tasks, task a, b, c, d, while 4 tasks all done, then output to html and let say task b has some ...

1 2 3 4 5