提交 a132ee49 编写于 作者: G Gloria 提交者: wusongqing

fixed d0a9e3e7 from https://gitee.com/wusongqing/docs/pulls/22373

Update docs against 21676

Signed-off-by: wusongqing<wusongqing@huawei.com>
上级 1f491c2e
...@@ -388,7 +388,7 @@ workerInstance.onexit = function(e) { ...@@ -388,7 +388,7 @@ workerInstance.onexit = function(e) {
workerInstance.terminate(); workerInstance.terminate();
// Worker thread: // Worker thread:
//parentPort.close() //workerPort.close()
``` ```
...@@ -429,7 +429,7 @@ workerInstance.onerror = function(e) { ...@@ -429,7 +429,7 @@ workerInstance.onerror = function(e) {
onmessage?: (event: MessageEvents) =&gt; void onmessage?: (event: MessageEvents) =&gt; void
Defines the event handler to be called when the host thread receives a message sent by the worker thread through **parentPort.postMessage**. The event handler is executed in the host thread. Defines the event handler to be called when the host thread receives a message sent by the worker thread through **workerPort.postMessage**. The event handler is executed in the host thread.
**System capability**: SystemCapability.Utils.Lang **System capability**: SystemCapability.Utils.Lang
...@@ -1053,8 +1053,8 @@ const workerInstance = new worker.ThreadWorker("entry/ets/workers/worker.ts"); ...@@ -1053,8 +1053,8 @@ const workerInstance = new worker.ThreadWorker("entry/ets/workers/worker.ts");
```js ```js
// worker.ts // worker.ts
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.workerPort; const workerPort = worker.workerPort;
parentPort.onmessageerror = function(e) { workerPort.onmessageerror = function(e) {
console.log("worker.ts onmessageerror") console.log("worker.ts onmessageerror")
} }
``` ```
...@@ -1744,11 +1744,11 @@ workerInstance.onmessage = function(e) { ...@@ -1744,11 +1744,11 @@ workerInstance.onmessage = function(e) {
```js ```js
// worker.ts // worker.ts
import worker from '@ohos.worker'; import worker from '@ohos.worker';
const parentPort = worker.parentPort; const workerPort = worker.workerPort;
parentPort.onmessage = function(e){ workerPort.onmessage = function(e){
// let data = e.data; // let data = e.data;
let buffer = new ArrayBuffer(5) let buffer = new ArrayBuffer(5)
parentPort.postMessage(buffer, [buffer]); workerPort.postMessage(buffer, [buffer]);
} }
``` ```
...@@ -2089,7 +2089,7 @@ Each actor concurrently processes tasks of the main thread. For each actor, ther ...@@ -2089,7 +2089,7 @@ Each actor concurrently processes tasks of the main thread. For each actor, ther
- Currently, a maximum of eight worker threads can co-exist. - Currently, a maximum of eight worker threads can co-exist.
- In API version 8 and earlier versions, when the number of **Worker** instances exceeds the upper limit, the error "Too many workers, the number of workers exceeds the maximum." is thrown. - In API version 8 and earlier versions, when the number of **Worker** instances exceeds the upper limit, the error "Too many workers, the number of workers exceeds the maximum." is thrown.
- Since API version 9, when the number of **Worker** instances exceeds the upper limit, the business error "Worker initialization failure, the number of workers exceeds the maximum." is thrown. - Since API version 9, when the number of **Worker** instances exceeds the upper limit, the business error "Worker initialization failure, the number of workers exceeds the maximum." is thrown.
- To proactively destroy a worker thread, you can call **terminate()** or **parentPort.close()** of the newly created **Worker** instance. - To proactively destroy a worker thread, you can call **terminate()** or **workerPort.close()** of the newly created **Worker** instance.
- Since API version 9, if a **Worker** instance in a non-running state (such as destroyed or being destroyed) calls an API, a business error is thrown. - Since API version 9, if a **Worker** instance in a non-running state (such as destroyed or being destroyed) calls an API, a business error is thrown.
- Creating and terminating worker threads consume performance. Therefore, you are advised to manage available workers and reuse them. - Creating and terminating worker threads consume performance. Therefore, you are advised to manage available workers and reuse them.
- Do not use both **new worker.Worker** and **new worker.ThreadWorker** to create a **Worker** project. Otherwise, **Worker** functions abnormally. Since API version 9, you are advised to use [new worker.ThreadWorker](#constructor9). In API version 8 and earlier versions, you are advised to use [new worker.Worker](#constructordeprecated). - Do not use both **new worker.Worker** and **new worker.ThreadWorker** to create a **Worker** project. Otherwise, **Worker** functions abnormally. Since API version 9, you are advised to use [new worker.ThreadWorker](#constructor9). In API version 8 and earlier versions, you are advised to use [new worker.Worker](#constructordeprecated).
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册