The SharedWorkerGlobalScope
object (the SharedWorker
global scope) is accessible through the self
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.
On this page
SharedWorkerGlobalScope
Instance properties
This interface inherits properties from the WorkerGlobalScope
interface, and its parent EventTarget
.
SharedWorkerGlobalScope.name
Read only-
The name that the
SharedWorker
was (optionally) given when it was created using theSharedWorker()
constructor. This is mainly useful for debugging purposes.
Instance properties inherited from WorkerGlobalScope
SharedWorkerGlobalScope.caches
Read only-
Returns the
CacheStorage
object associated with the current context. This object enables functionality such as storing assets for offline use, and generating custom responses to requests. SharedWorkerGlobalScope.console
Read only Non-standard-
Returns the
console
associated with the worker. SharedWorkerGlobalScope.fonts
Read only-
Returns the
FontFaceSet
associated with the worker. SharedWorkerGlobalScope.indexedDB
Read only-
Provides a mechanism for applications to asynchronously access capabilities of indexed databases; returns an
IDBFactory
object. SharedWorkerGlobalScope.isSecureContext
Read only-
Returns a boolean indicating whether the current context is secure (
true
) or not (false
). SharedWorkerGlobalScope.location
Read only-
Returns the
WorkerLocation
associated with the worker.WorkerLocation
is a specific location object, mostly a subset of theLocation
for browsing scopes, but adapted to workers. SharedWorkerGlobalScope.navigator
Read only-
Returns the
WorkerNavigator
associated with the worker.WorkerNavigator
is a specific navigator object, mostly a subset of theNavigator
for browsing scopes, but adapted to workers. SharedWorkerGlobalScope.origin
Read only-
Returns the global object's origin, serialized as a string.
SharedWorkerGlobalScope.performance
Read only-
Returns the
Performance
object associated with the worker, which is a regular performance object, but with a subset of its properties and methods available. SharedWorkerGlobalScope.scheduler
Read only-
Returns the
Scheduler
object associated with the current context. This is the entry point for using the Prioritized Task Scheduling API. -
SharedWorkerGlobalScope.self
-
Returns an object reference to the
SharedWorkerGlobalScope
object itself.
Instance methods
This interface inherits methods from the WorkerGlobalScope
interface, and its parent EventTarget
.
-
SharedWorkerGlobalScope.close()
-
Discards any tasks queued in the
SharedWorkerGlobalScope
's event loop, effectively closing this particular scope.
Inherited from WorkerGlobalScope
-
SharedWorkerGlobalScope.atob()
-
Decodes a string of data which has been encoded using base-64 encoding.
-
SharedWorkerGlobalScope.btoa()
-
Creates a base-64 encoded ASCII string from a string of binary data.
-
SharedWorkerGlobalScope.clearInterval()
-
Cancels the repeated execution set using
setInterval
. -
SharedWorkerGlobalScope.clearTimeout()
-
Cancels the repeated execution set using
setTimeout
. SharedWorkerGlobalScope.dump()
Deprecated Non-standard-
Writes a message to the console.
-
SharedWorkerGlobalScope.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');
-
SharedWorkerGlobalScope.setInterval()
-
Schedules the execution of a function every X milliseconds.
-
SharedWorkerGlobalScope.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.
-
connect
-
Fired on shared workers when a new client connects.
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
SharedWorkerGlobalScope |
4 | 79 | 29 | No | 10.6 | 165–7 | ≤37 | 18 | 29 | 11 | 165–7 | 1.0 |
close |
4 | 79 | 29 | No | 10.6 | 165–7 | 4.4 | 18 | 29 | 11 | 165–7 | 1.0 |
connect_event |
4 | 79 |
29Before version 65 thedata property of the event object was null ; it is now initialized to an empty string, as per spec.
|
No | 10.6 | 165–7 | ≤37 | 18 |
29Before version 65 thedata property of the event object was null ; it is now initialized to an empty string, as per spec.
|
11 | 165–7 | 1.0 |
name |
4 | 79 | 29 | No | 10.6 | 165–7 | 4.4 | 18 | 29 | 11 | 165–7 | 1.0 |
See also
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SharedWorkerGlobalScope