web api instance method
DedicatedWorkerGlobalScope: close() method
Available in workers
The close() method of the DedicatedWorkerGlobalScope interface discards any tasks queued in the DedicatedWorkerGlobalScope’s event loop, effectively closing this particular scope.
Syntax
close()
Parameters
None.
Return value
None (undefined).
Examples
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
terminatemethod.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.