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.
This interface inherits properties from the WorkerGlobalScope
interface, and its parent EventTarget
, and therefore implements properties from WindowTimers
, WindowBase64
, and WindowEventHandlers
.
SharedWorkerGlobalScope.name
Read only
SharedWorker
was (optionally) given when it was created using the SharedWorker()
constructor. This is mainly useful for debugging purposes.SharedWorkerGlobalScope.applicationCache
Read only
ApplicationCache
object for the worker (see Using the application cache).WorkerGlobalScope.self
DedicatedWorkerGlobalScope
object itself.WorkerGlobalScope.console
Read only
Console
associated with the worker.WorkerGlobalScope.location
Read only
WorkerLocation
associated with the worker. WorkerLocation
is a specific location object, mostly a subset of the Location
for browsing scopes, but adapted to workers.WorkerGlobalScope.navigator
Read only
WorkerNavigator
associated with the worker. WorkerNavigator
is a specific navigator object, mostly a subset of the Navigator
for browsing scopes, but adapted to workers.WorkerGlobalScope.performance
Read only
Performance
object associated with the worker, which is a regular performance object, but with a subset of its properties and methods available.This interface inherits event handlers from the WorkerGlobalScope
interface, and its parent EventTarget
, and therefore implements event handlers from WindowTimers
, WindowBase64
, and WindowEventHandlers
.
SharedWorkerGlobalScope.onconnect
EventHandler
representing the code to be called when the connect
event is raised — that is, when a MessagePort
connection is opened between the associated SharedWorker
and the main thread.This interface inherits methods from the WorkerGlobalScope
interface, and its parent EventTarget
, and therefore implements methods from WindowTimers
, WindowBase64
, and WindowEventHandlers
.
SharedWorkerGlobalScope.close()
SharedWorkerGlobalScope
's event loop, effectively closing this particular scope.WorkerGlobalScope.close()
WorkerGlobalScope
's event loop, effectively closing this particular scope.WorkerGlobalScope.dump()
window.dump
, but for workers.WorkerGlobalScope.importScripts()
importScripts('foo.js', 'bar.js');
WindowBase64.atob()
WindowBase64.btoa()
WindowTimers.clearInterval()
WindowTimers.setInterval()
.WindowTimers.clearTimeout()
WindowTimers.setTimeout()
.WindowTimers.setInterval()
WindowTimers.setTimeout()
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'SharedWorkerGlobalScope' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 4 | ? | 29 | No | 10.6 | 5 |
applicationCache |
3 | ? | 29 | No | 10.6 | No |
name |
Yes | ? | 55 | No | 10.6 | No |
onconnect |
No | ? | 29 | No | 10.6 | No |
close |
No | ? | 54 | ? | No | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | ? | 4 | 11.5 | 7.1 | Yes |
applicationCache |
Yes | Yes | ? | 29 | Yes | ? | Yes |
name |
Yes | 40 | ? | 55 | Yes | No | 4.0 |
onconnect |
Yes | 18 | ? | 29 | Yes | ? | Yes |
close |
No | No | ? | 54 | No | ? | No |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SharedWorkerGlobalScope