The port property of the SharedWorker interface returns a MessagePort object used to communicate and control the shared worker.
Syntax
myWorker.port;
Value
A MessagePort object.
Example
The following code snippet shows creation of a SharedWorker object using the SharedWorker() constructor. Multiple scripts can then access the worker through a MessagePort object accessed using the SharedWorker.port property — the port is started using its start() method:
var myWorker = new SharedWorker('worker.js');
myWorker.port.start();
For a full example, see our Basic shared worker example (run shared worker.)
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'AbstractWorker.onerror' in that specification. |
Living Standard |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
See also
- The
SharedWorkerinterface it belongs to. - another multiply demo
