MDN Web Docs

Syntax

js

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:

js

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
HTML
# dom-sharedworkerglobalscope-close-dev

Browser compatibility

See also

Help improve MDN

Yes No

Learn how to contribute

This page was last modified on by MDN contributors.

Read the original on developer.mozilla.org ↗