summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/scheduler/scheduler.idl
blob: cf184c192ec748b98661f78ff3a897402172d6a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Experimental Scheduling API Proposal:
// https://docs.google.com/document/d/1xU7HyNsEsbXhTgt0ZnXDbeSXm5-m5FzkLJAT6LTizEI/edit#
[
    ImplementedAs=DOMScheduler,
    RuntimeEnabled=WebScheduler
] interface Scheduler {
    readonly attribute TaskQueue currentTaskQueue;
    TaskQueue getTaskQueue(TaskQueuePriority priority);
    Task postTask(Function callback, optional SchedulerPostTaskOptions options, any... arguments);
};