Atomics.waitAsync() - JavaScript | MDN
Syntax
js
Atomics.waitAsync(typedArray, index, value)
Atomics.waitAsync(typedArray, index, value, timeout)
Parameters
typedArray-
An
Int32ArrayorBigInt64Arraythat views aSharedArrayBuffer. index-
The position in the
typedArrayto wait on. value-
The expected value to test.
timeoutOptional-
Time to wait in milliseconds.
NaN(and values that get converted toNaN, such asundefined) becomesInfinity. Negative values become0.
Return value
An Object with the following properties:
async-
A boolean indicating whether the
valueproperty is aPromiseor not. value-
If
asyncisfalse, it will be a string which is either"not-equal"or"timed-out"(only when thetimeoutparameter is0). Ifasyncistrue, it will be aPromisewhich is fulfilled with a string value, either"ok"or"timed-out". The promise is never rejected.
Exceptions
TypeError-
Thrown if
typedArrayis not anInt32ArrayorBigInt64Arraythat views aSharedArrayBuffer. RangeError-
Thrown if
indexis out of bounds in thetypedArray.
Examples
Note that these examples cannot be run directly from the console or an arbitrary web page, because SharedArrayBuffer is not defined unless its security requirements are met.
Using Atomics.waitAsync()
Given a shared Int32Array:
js
// Create a SharedArrayBuffer with a size in bytes
const sab = new SharedArrayBuffer(1024);
const int32 = new Int32Array(sab);
A reading thread is sleeping and waiting on location 0 which is expected to be 0.
The result.value will be a promise.
js
const result = Atomics.waitAsync(int32, 0, 0, 1000);
// { async: true, value: Promise {<pending>} }
In the reading thread or in another thread, the memory location 0 is called and the promise can be resolved with "ok".
js
Atomics.notify(int32, 0);
// { async: true, value: Promise {<fulfilled>: 'ok'} }
If it isn't resolving to "ok", the value in the shared memory location wasn't the expected (the value would be "not-equal" instead of a promise) or the timeout was reached (the promise will resolve to "time-out").
Specifications
| Specification |
|---|
| ECMAScript® 2027 Language Specification # sec-atomics.waitasync |