@@ -3248,11 +3248,13 @@ console.log(`The parent process is pid ${ppid}`);
3248
3248
added: v23.6.0
3249
3249
-->
3250
3250
3251
+ > Stability: 1 - Experimental
3252
+
3251
3253
* ` maybeRefable` {any} An object that may be "refable".
3252
3254
3253
3255
An object is "refable" if it implements the Node.js "Refable protocol".
3254
- Specifically, this means that the object implements the ` Symbol .for (' node: ref' )`
3255
- and ` Symbol .for (' node: unref' )` methods. "Ref'd" objects will keep the Node.js
3256
+ Specifically, this means that the object implements the ` Symbol .for (' nodejs. ref' )`
3257
+ and ` Symbol .for (' nodejs. unref' )` methods. "Ref'd" objects will keep the Node.js
3256
3258
event loop alive, while "unref'd" objects will not. Historically, this was
3257
3259
implemented by using ` ref ()` and ` unref ()` methods directly on the objects.
3258
3260
This pattern, however, is being deprecated in favor of the "Refable protocol"
@@ -4307,11 +4309,13 @@ In [`Worker`][] threads, `process.umask(mask)` will throw an exception.
4307
4309
added: v23.6.0
4308
4310
-->
4309
4311
4312
+ > Stability: 1 - Experimental
4313
+
4310
4314
* ` maybeUnfefable` {any} An object that may be "unref'd".
4311
4315
4312
4316
An object is "unrefable" if it implements the Node.js "Refable protocol".
4313
- Specifically, this means that the object implements the ` Symbol .for (' node: ref' )`
4314
- and ` Symbol .for (' node: unref' )` methods. "Ref'd" objects will keep the Node.js
4317
+ Specifically, this means that the object implements the ` Symbol .for (' nodejs. ref' )`
4318
+ and ` Symbol .for (' nodejs. unref' )` methods. "Ref'd" objects will keep the Node.js
4315
4319
event loop alive, while "unref'd" objects will not. Historically, this was
4316
4320
implemented by using ` ref ()` and ` unref ()` methods directly on the objects.
4317
4321
This pattern, however, is being deprecated in favor of the "Refable protocol"
0 commit comments