The close() method of the DedicatedWorkerGlobalScope interface discards any tasks queued in the DedicatedWorkerGlobalScope's event loop, effectively closing this particular scope.
Syntax
self.close();
Example
If you want to close your worker instance from inside the worker itself, you can call the following:
close();
close() and self.close() are effectively equivalent — both represent close() being called from inside the worker's inner scope.
Note: There is also a way to stop the worker from the main thread: the Worker.terminate method.
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'close()' 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.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
close | Chrome Full support Yes | Edge Full support ≤79 | Firefox Full support 54 | IE ? | Opera Full support Yes | Safari ? | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support 54 | Opera Android Full support Yes | Safari iOS ? | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
