静态方法 Atomics
.notify()
提醒一些在等待队列中休眠的代理。
注意:本操作仅在共享的 Int32Array
下可用。
语法
Atomics.notify(typedArray, index, count)
参数
-
typedArray
-
一个共享的
Int32Array
。 -
index
-
typedArray
中要唤醒的目标索引。 -
count
-
要通知的正在休眠的代理的数量。默认是
+Infinity
。
返回值
被唤醒的代理的数量。
异常
- 若
typedArray
不是共享的TypeError
异常。 - 若
index
索引超出了typedArray
的大小,则抛出一个RangeError
异常。
示例
分配一个共享的 Int32Array
:
var sab = new SharedArrayBuffer(1024); var int32 = new Int32Array(sab);
一个读线程会进入休眠并监视索引0处的值(默认为0)。只要索引0处的值不为0,读进程就会唤醒。但是,一旦写进程存储了一个新的值,写进程就会产生一个提醒并返回写入后的新值(123)。
Atomics.wait(int32, 0, 0); console.log(int32[0]); // 123
写进程写入一个新值并告知等待进程已经写入成功了:
console.log(int32[0]); // 0; Atomics.store(int32, 0, 123); Atomics.notify(int32, 0, 1);
规范
规范 | 状态 | 注释 |
---|---|---|
ECMAScript Latest Draft (ECMA-262) Atomics.notify |
Draft | Initial definition in ES2017. |
浏览器兼容性
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out
https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
Desktop | Mobile | Server | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
notify |
Chrome Full support 68
|
Edge No support No
|
Firefox Full support 63
|
IE No support No | Opera No support No | Safari No support 10.1 — ?
|
WebView Android No support 60 — 63
|
Chrome Android No support 60 — 63
|
Firefox Android Full support 63
|
Opera Android No support No | Safari iOS No support No | Samsung Internet Android No support No
|
nodejs Full support 8.10.0
|
Legend
- Full support
- Full support
- No support
- No support
- See implementation notes.
- See implementation notes.
- User must explicitly enable this feature.
- User must explicitly enable this feature.
- Uses a non-standard name.
- Uses a non-standard name.