Firefox Tomorrow

web api instance method

SharedWorkerGlobalScope: close() method

View on MDN ↗

The close() method of the SharedWorkerGlobalScope interface discards any tasks queued in the SharedWorkerGlobalScope’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 terminate method.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also

DedicatedWorkerGlobalScope