web api interface
TaskPriorityChangeEvent
Available in workers
The TaskPriorityChangeEvent is the interface for the prioritychange event.
Constructor
TaskPriorityChangeEvent()- : Creates a new
TaskPriorityChangeEventobject, setting an event name and previous priority.
- : Creates a new
Instance properties
This interface also inherits the properties of its parent, Event.
previousPriorityRead only- : Returns the priority of the corresponding
TaskSignalbefore thisprioritychangeevent.
- : Returns the priority of the corresponding
Instance methods
This interface has no methods of its own, but inherits the methods of its parent, Event.
Examples
An object of this type is returned in the handler for a prioritychange event.
The code below shows a handler in which the newPriority and previousPriority are logged.
// Listen for 'prioritychange' events on the controller's signal.
controller.signal.addEventListener("prioritychange", (event) => {
const previousPriority = event.previousPriority;
const newPriority = event.target.priority;
console.log(`Priority changed from ${previousPriority} to ${newPriority}.`);
});
A more complete live example can be found in prioritychange event > Examples.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
prioritychangeevent