Firefox Tomorrow

web api interface

DedicatedWorkerGlobalScope

View on MDN ↗

Available in workers

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.

Instance properties

This interface inherits properties from the WorkerGlobalScope interface, and its parent EventTarget.

  • name Read only
    • : The name that the Worker was (optionally) given when it was created using the Worker() constructor. This is mainly useful for debugging purposes.

Instance methods

This interface inherits methods from the WorkerGlobalScope interface, and its parent EventTarget.

  • close()
    • : Discards any tasks queued in the WorkerGlobalScope’s event loop, effectively closing this particular scope.
  • postMessage()
    • : Sends a message — which can consist of any JavaScript object — to the parent document that first spawned the worker.
  • cancelAnimationFrame()
  • requestAnimationFrame()
    • : Perform an animation frame request and call a user-supplied callback function before the next repaint.

Events

Listen to this event using addEventListener() or by assigning an event listener to the oneventname property of this interface.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also