mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
doc: use serial comma in worker_threads docs
Refs: https://github.com/nodejs/node/pull/11321 Refs: https://github.com/nodejs/node/pull/17384 PR-URL: https://github.com/nodejs/node/pull/43220 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
This commit is contained in:
@@ -633,7 +633,7 @@ circularData.foo = circularData;
|
||||
port2.postMessage(circularData);
|
||||
```
|
||||
|
||||
`transferList` may be a list of [`ArrayBuffer`][], [`MessagePort`][] and
|
||||
`transferList` may be a list of [`ArrayBuffer`][], [`MessagePort`][], and
|
||||
[`FileHandle`][] objects.
|
||||
After transferring, they are not usable on the sending side of the channel
|
||||
anymore (even if they are not contained in `value`). Unlike with
|
||||
@@ -836,8 +836,8 @@ Most Node.js APIs are available inside of it.
|
||||
|
||||
Notable differences inside a Worker environment are:
|
||||
|
||||
* The [`process.stdin`][], [`process.stdout`][] and [`process.stderr`][]
|
||||
may be redirected by the parent thread.
|
||||
* The [`process.stdin`][], [`process.stdout`][], and [`process.stderr`][]
|
||||
streams may be redirected by the parent thread.
|
||||
* The [`require('node:worker_threads').isMainThread`][] property is set to `false`.
|
||||
* The [`require('node:worker_threads').parentPort`][] message port is available.
|
||||
* [`process.exit()`][] does not stop the whole program, just the single thread,
|
||||
|
||||
Reference in New Issue
Block a user