Readonly
[toAdds a value to the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Stores the bitwise AND of a value with the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Stores the bitwise AND of a value with the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Replaces the value at the given position in the array if the original value equals the given expected value, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Replaces the value at the given position in the array if the original value equals the given expected value, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Replaces the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Replaces the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Returns the value at the given position in the array. Until this atomic operation completes, any other read or write operation against the array will block.
Returns the value at the given position in the array. Until this atomic operation completes, any other read or write operation against the array will block.
Wakes up sleeping agents that are waiting on the given index of the array, returning the number of agents that were awoken.
A shared Int32Array.
The position in the typedArray to wake up on.
Optional
count: numberThe number of sleeping agents to notify. Defaults to +Infinity.
Wakes up sleeping agents that are waiting on the given index of the array, returning the number of agents that were awoken.
A shared BigInt64Array.
The position in the typedArray to wake up on.
Optional
count: numberThe number of sleeping agents to notify. Defaults to +Infinity.
Stores the bitwise OR of a value with the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Stores the bitwise OR of a value with the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Stores a value at the given position in the array, returning the new value. Until this atomic operation completes, any other read or write operation against the array will block.
Stores a value at the given position in the array, returning the new value. Until this atomic operation completes, any other read or write operation against the array will block.
Subtracts a value from the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Subtracts a value from the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
If the value at the given position in the array is equal to the provided value, the current
agent is put to sleep causing execution to suspend until the timeout expires (returning
"timed-out"
) or until the agent is awoken (returning "ok"
); otherwise, returns
"not-equal"
.
Optional
timeout: numberIf the value at the given position in the array is equal to the provided value, the current
agent is put to sleep causing execution to suspend until the timeout expires (returning
"timed-out"
) or until the agent is awoken (returning "ok"
); otherwise, returns
"not-equal"
.
Optional
timeout: numberA non-blocking, asynchronous version of wait which is usable on the main thread. Waits asynchronously on a shared memory location and returns a Promise
A shared Int32Array or BigInt64Array.
The position in the typedArray to wait on.
The expected value to test.
Optional
timeout: numberThe expected value to test.
A non-blocking, asynchronous version of wait which is usable on the main thread. Waits asynchronously on a shared memory location and returns a Promise
A shared Int32Array or BigInt64Array.
The position in the typedArray to wait on.
The expected value to test.
Optional
timeout: numberThe expected value to test.
Stores the bitwise XOR of a value with the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Stores the bitwise XOR of a value with the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.
Adds a value to the value at the given position in the array, returning the original value. Until this atomic operation completes, any other read or write operation against the array will block.