Loading...
Searching...
No Matches
v8-microtask.h
Go to the documentation of this file.
1// Copyright 2021 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef INCLUDE_V8_MICROTASK_H_
6#define INCLUDE_V8_MICROTASK_H_
7
8namespace v8 {
9
10class Isolate;
11
12// --- Microtasks Callbacks ---
14using MicrotaskCallback = void (*)(void* data);
15
25
26} // namespace v8
27
28#endif // INCLUDE_V8_MICROTASK_H_
Definition: v8-isolate.h:210
Definition: libplatform.h:15
void(*)(void *data) MicrotaskCallback
Definition: v8-microtask.h:14
MicrotasksPolicy
Definition: v8-microtask.h:24
void(*)(Isolate *, void *) MicrotasksCompletedCallbackWithData
Definition: v8-microtask.h:13