The DedicatedWorkerGlobalScope
object (the Worker
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 also: 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
.
DedicatedWorkerGlobalScope.name
Read only
Worker
was (optionally) given when it was created using the Worker()
constructor. This is mainly useful for debugging purposes.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
.
DedicatedWorkerGlobalScope.onmessage
EventHandler
representing the code to be called when the message
event is raised. These events are of type MessageEvent
and will be called when the worker receives a message from the document that started it (i.e. from the Worker.postMessage
method.)DedicatedWorkerGlobalScope.onmessageerror
EventHandler
representing the code to be called when the messageerror
event is raised.This interface inherits methods from the WorkerGlobalScope
interface, and its parent EventTarget
, and therefore implements methods from WindowTimers
, WindowBase64
, and WindowEventHandlers
.
DedicatedWorkerGlobalScope.close()
WorkerGlobalScope
's event loop, effectively closing this particular scope.DedicatedWorkerGlobalScope.postMessage()
any
JavaScript object — to the parent document that first spawned the worker.WorkerGlobalScope.dump()
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 'DedicatedWorkerGlobalScope' in that specification. | Living Standard |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 4 | 3.5 (1.9.1) | 10 | 10.6 | 4 |
ononline , onoffline
| (Yes) | 29 (29) | ? | ? | ? |
console
| (Yes) |
29 (29)[1] 30 (30) | ? | ? | ? |
performance | (Yes) | 34 (34) | ? | ? | ? |
close() moved from WorkerGlobalScope to DedicatedWorkerGlobalScope
| ? | 54 (54) | ? | ? | ? |
name | (Yes) | 55 (55) | ? | ? | ? |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 1.0 (1.9.1) | 10 | 11.5 | 5.1 |
ononline , onoffline
| ? | (Yes) | 29.0 (29)[1] 30.0 (30) | ? | ? | ? |
console
| ? | (Yes) | 29.0 (29) | ? | ? | ? |
performance | ? | (Yes) | 34.0 (34) | ? | ? | ? |
close() moved from WorkerGlobalScope to DedicatedWorkerGlobalScope
| ? | ? | 54.0 (54) | ? | ? | ? |
name | ? | (Yes) | 55 (55) | ? | ? | ? |
[1] Gecko 29.0 implemented this as WorkerConsole
. Gecko 30.0 changed this to the regular Console
.
© 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/DedicatedWorkerGlobalScope