Tagged Questions
1
vote
0answers
245 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
535 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
1answer
323 views
Web Sockets and Web Workers… Literal?
In all of the demos I have seen thus far, Web Workers and Web Sockets apis seemed to use the "new" keyword in JavaScript. Is there another way to use these powerful tools without using the new ...
12
votes
6answers
2k views
Sharing websocket across browser tabs?
We want to have one socket per browser rather than one per tab in a browser. How can we achieve it? I read about shared web workers which was promising. A reference for that too is appreciated. ...
8
votes
3answers
1k 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 ...
3
votes
1answer
2k views
WebWorkers and WebSockets with Firefox
I'm trying to implement a working WebSocket connection within a WebWorker. That should be simple and it is if I use Chrome as b rowser. However, since this experiment should further become part of a ...