SharedWorkerGlobalScope: close() method - Web APIs | MDN (original) (raw)
The close()
method of the SharedWorkerGlobalScope interface discards any tasks queued in the SharedWorkerGlobalScope
's event loop, effectively closing this particular scope.
Syntax
Parameters
None.
Return value
Examples
If you want to close your worker instance from inside the worker itself, you can call the following:
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 |
---|
HTML Standard # dom-sharedworkerglobalscope-close-dev |
Browser compatibility
BCD tables only load in the browser