SharedWorkerGlobalScope
The SharedWorkerGlobalScope object (the SharedWorker global scope) is accessible through the self (en-US) keyword. Some additional global functions, namespaces objects, and constructors, not typically associated with the worker global scope, but available on it, are listed in the JavaScript Reference. See the complete list of functions available to workers.
Properties
This interface inherits properties from the WorkerGlobalScope interface, and its parent EventTarget, and therefore implements properties from WindowTimers, WindowBase64, and WindowEventHandlers.
-
The name that the
SharedWorkerwas (optionally) given when it was created using theSharedWorker()constructor. This is mainly useful for debugging purposes. -
This property returns the
ApplicationCacheobject for the worker (see Using the application cache).
Properties inherited from WorkerGlobalScope
WorkerGlobalScope.self-
Returns an object reference to the
DedicatedWorkerGlobalScopeobject itself. WorkerGlobalScope.consoleLecture seule-
Returns the
Consoleassociated with the worker. WorkerGlobalScope.locationLecture seule-
Returns the
WorkerLocationassociated with the worker.WorkerLocationis a specific location object, mostly a subset of theLocationfor browsing scopes, but adapted to workers. -
Returns the
WorkerNavigator(en-US) associated with the worker.WorkerNavigatoris a specific navigator object, mostly a subset of theNavigatorfor browsing scopes, but adapted to workers. WorkerGlobalScope.performance(en-US) Lecture seule Non-standard-
Returns the
Performanceobject associated with the worker, which is a regular performance object, but with a subset of its properties and methods available.
Event handlers
This interface inherits event handlers from the WorkerGlobalScope interface, and its parent EventTarget, and therefore implements event handlers from WindowTimers, WindowBase64, and WindowEventHandlers.
-
Is an gestionnaire d'évènement representing the code to be called when the
connect} event is raised — that is, when aMessagePort(en-US) connection is opened between the associatedSharedWorkerand the main thread.
Methods
This interface inherits methods from the WorkerGlobalScope interface, and its parent EventTarget, and therefore implements methods from WindowTimers, WindowBase64, and WindowEventHandlers.
-
Discards any tasks queued in the
SharedWorkerGlobalScope's event loop, effectively closing this particular scope.
Inherited from WorkerGlobalScope
WorkerGlobalScope.close()Obsolète-
Discards any tasks queued in the
WorkerGlobalScope's event loop, effectively closing this particular scope. WorkerGlobalScope.dump()Non-standard-
Allows you to write a message to stdout — i.e. in your terminal. This is the same as Firefox's
window.dump, but for workers. WorkerGlobalScope.importScripts()-
Imports one or more scripts into the worker's scope. You can specify as many as you'd like, separated by commas. For example:
importScripts('foo.js', 'bar.js');
Implemented from other places
WindowBase64.atob()-
Decodes a string of data which has been encoded using base-64 encoding.
WindowBase64.btoa()-
Creates a base-64 encoded ASCII string from a string of binary data.
WindowTimers.clearInterval()-
Cancels the repeated execution set using
WindowTimers.setInterval()(en-US). WindowTimers.clearTimeout()(en-US)-
Cancels the repeated execution set using
WindowTimers.setTimeout(). WindowTimers.setInterval()(en-US)-
Schedules the execution of a function every X milliseconds.
WindowTimers.setTimeout()-
Sets a delay for executing a function.
Events
Listen to this event using addEventListener() or by assigning an event listener to the oneventname property of this interface.
Spécifications
| Specification |
|---|
| HTML Standard # shared-workers-and-the-sharedworkerglobalscope-interface |
Compatibilité des navigateurs
BCD tables only load in the browser