The setPriority()
method of the TaskController
interface can be called to set a new priority for this controller's signal
. If a prioritized task is configured to use the signal, this will also change the task priority.
Observers are notified of priority changes by dispatching a prioritychange
event. The method will only notify if the priority actually changes (the event is not fired if the priority would not be changed by the call).
Note that task priority can only be changed for tasks with mutable priorities. If the task is immutable, the function call is ignored.
First we create a task controller. In this case we don't specify a priority, so it will default to user-visible
.
const controller = new TaskController();
Then we pass the controller's signal to the Scheduler.postTask()
method.
scheduler
.postTask(() => "Task execute", { signal: controller.signal })
.then((taskResult) => {
console.log(`${taskResult}`);
})
.catch((error) => {
console.log(`Catch error: ${error}`);
});
The controller can then be used to change the priority
controller.setPriority("background");
Additional examples, including showing how to handle the event that results from changing the priority, can be found in: Prioritized Task Scheduling API > Examples.