@@ -289,7 +289,7 @@ inherits from its global `Object` class. Objects passed to the
289
289
and inherit from its global ` Object ` class.
290
290
291
291
However, the created ` MessagePort ` no longer inherits from
292
- [ ` EventTarget ` ] [ ] , and only [ ` port.onmessage() ` ] [ ] can be used to receive
292
+ { EventTarget} , and only [ ` port.onmessage() ` ] [ ] can be used to receive
293
293
events using it.
294
294
295
295
## ` worker.parentPort `
@@ -849,14 +849,14 @@ circularData.foo = circularData;
849
849
port2 .postMessage (circularData);
850
850
` ` `
851
851
852
- ` transferList` may be a list of [ ` ArrayBuffer ` ][] , [` MessagePort ` ][], and
852
+ ` transferList` may be a list of { ArrayBuffer} , [` MessagePort ` ][], and
853
853
[` FileHandle` ][] objects.
854
854
After transferring, they are not usable on the sending side of the channel
855
855
anymore (even if they are not contained in ` value` ). Unlike with
856
856
[child processes][], transferring handles such as network sockets is currently
857
857
not supported.
858
858
859
- If ` value` contains [ ` SharedArrayBuffer ` ][] instances, those are accessible
859
+ If ` value` contains { SharedArrayBuffer} instances, those are accessible
860
860
from either thread. They cannot be listed in ` transferList` .
861
861
862
862
` value` may still contain ` ArrayBuffer ` instances that are not in
@@ -894,8 +894,8 @@ behind this API, see the [serialization API of the `node:v8` module][v8.serdes].
894
894
895
895
#### Considerations when transferring TypedArrays and Buffers
896
896
897
- All ` TypedArray` and ` Buffer` instances are views over an underlying
898
- ` ArrayBuffer ` . That is, it is the ` ArrayBuffer ` that actually stores
897
+ All { TypedArray| Buffer} instances are views over an underlying
898
+ { ArrayBuffer} . That is, it is the ` ArrayBuffer ` that actually stores
899
899
the raw data while the ` TypedArray` and ` Buffer` objects provide a
900
900
way of viewing and manipulating the data. It is possible and common
901
901
for multiple views to be created over the same ` ArrayBuffer ` instance.
@@ -944,8 +944,8 @@ those `ArrayBuffer`s unusable.
944
944
945
945
Because object cloning uses the [HTML structured clone algorithm][],
946
946
non-enumerable properties, property accessors, and object prototypes are
947
- not preserved. In particular, [ ` Buffer` ][] objects will be read as
948
- plain [ ` Uint8Array ` ][] s on the receiving side, and instances of JavaScript
947
+ not preserved. In particular, { Buffer} objects will be read as
948
+ plain { Uint8Array} s on the receiving side, and instances of JavaScript
949
949
classes will be cloned as plain JavaScript objects.
950
950
951
951
<!-- eslint-disable no-unused-private-class-members -->
@@ -1585,21 +1585,16 @@ thread spawned will spawn another until the application crashes.
1585
1585
[` 'online'` event ]: #event - online
1586
1586
[` --max-old-space-size` ]: cli .md #-- max- old- space- sizesize- in - mib
1587
1587
[` --max-semi-space-size` ]: cli .md #-- max- semi- space- sizesize- in - mib
1588
- [` ArrayBuffer` ]: https: // developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
1589
1588
[` AsyncResource` ]: async_hooks .md #class - asyncresource
1590
1589
[` Buffer.allocUnsafe()` ]: buffer .md #static - method- bufferallocunsafesize
1591
- [` Buffer` ]: buffer .md
1592
1590
[` ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST` ]: errors .md #err_missing_message_port_in_transfer_list
1593
1591
[` ERR_WORKER_MESSAGING_ERRORED` ]: errors .md #err_worker_messaging_errored
1594
1592
[` ERR_WORKER_MESSAGING_FAILED` ]: errors .md #err_worker_messaging_failed
1595
1593
[` ERR_WORKER_MESSAGING_SAME_THREAD` ]: errors .md #err_worker_messaging_same_thread
1596
1594
[` ERR_WORKER_MESSAGING_TIMEOUT` ]: errors .md #err_worker_messaging_timeout
1597
1595
[` ERR_WORKER_NOT_RUNNING` ]: errors .md #err_worker_not_running
1598
- [` EventTarget` ]: https: // developer.mozilla.org/en-US/docs/Web/API/EventTarget
1599
1596
[` FileHandle` ]: fs .md #class - filehandle
1600
1597
[` MessagePort` ]: #class - messageport
1601
- [` SharedArrayBuffer` ]: https: // developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
1602
- [` Uint8Array` ]: https: // developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
1603
1598
[` WebAssembly.Module` ]: https: // developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module
1604
1599
[` Worker constructor options` ]: #new - workerfilename- options
1605
1600
[` Worker` ]: #class - worker
0 commit comments