@@ -3227,11 +3227,13 @@ console.log(`The parent process is pid ${ppid}`);
3227
3227
added: REPLACEME
3228
3228
-->
3229
3229
3230
+ > Stability: 1 - Experimental
3231
+
3230
3232
* ` maybeRefable` {any} An object that may be "refable".
3231
3233
3232
3234
An object is "refable" if it implements the Node.js "Refable protocol".
3233
- Specifically, this means that the object implements the ` Symbol .for (' node: ref' )`
3234
- and ` Symbol .for (' node: unref' )` methods. "Ref'd" objects will keep the Node.js
3235
+ Specifically, this means that the object implements the ` Symbol .for (' nodejs. ref' )`
3236
+ and ` Symbol .for (' nodejs. unref' )` methods. "Ref'd" objects will keep the Node.js
3235
3237
event loop alive, while "unref'd" objects will not. Historically, this was
3236
3238
implemented by using ` ref ()` and ` unref ()` methods directly on the objects.
3237
3239
This pattern, however, is being deprecated in favor of the "Refable protocol"
@@ -4284,11 +4286,13 @@ In [`Worker`][] threads, `process.umask(mask)` will throw an exception.
4284
4286
added: REPLACEME
4285
4287
-->
4286
4288
4289
+ > Stability: 1 - Experimental
4290
+
4287
4291
* ` maybeUnfefable` {any} An object that may be "unref'd".
4288
4292
4289
4293
An object is "unrefable" if it implements the Node.js "Refable protocol".
4290
- Specifically, this means that the object implements the ` Symbol .for (' node: ref' )`
4291
- and ` Symbol .for (' node: unref' )` methods. "Ref'd" objects will keep the Node.js
4294
+ Specifically, this means that the object implements the ` Symbol .for (' nodejs. ref' )`
4295
+ and ` Symbol .for (' nodejs. unref' )` methods. "Ref'd" objects will keep the Node.js
4292
4296
event loop alive, while "unref'd" objects will not. Historically, this was
4293
4297
implemented by using ` ref ()` and ` unref ()` methods directly on the objects.
4294
4298
This pattern, however, is being deprecated in favor of the "Refable protocol"
0 commit comments