@@ -282,15 +282,15 @@ This is an opaque pointer that is used to represent a JavaScript value.
282
282
283
283
### napi_threadsafe_function
284
284
285
- > Stability: 1 - Experimental
285
+ > Stability: 2 - Stable
286
286
287
287
This is an opaque pointer that represents a JavaScript function which can be
288
288
called asynchronously from multiple threads via
289
289
`napi_call_threadsafe_function()`.
290
290
291
291
### napi_threadsafe_function_release_mode
292
292
293
- > Stability: 1 - Experimental
293
+ > Stability: 2 - Stable
294
294
295
295
A value to be given to `napi_release_threadsafe_function()` to indicate whether
296
296
the thread-safe function is to be closed immediately (`napi_tsfn_abort`) or
@@ -305,7 +305,7 @@ typedef enum {
305
305
306
306
### napi_threadsafe_function_call_mode
307
307
308
- > Stability: 1 - Experimental
308
+ > Stability: 2 - Stable
309
309
310
310
A value to be given to `napi_call_threadsafe_function()` to indicate whether
311
311
the call should block whenever the queue associated with the thread-safe
@@ -400,7 +400,7 @@ typedef void (*napi_async_complete_callback)(napi_env env,
400
400
401
401
#### napi_threadsafe_function_call_js
402
402
403
- > Stability: 1 - Experimental
403
+ > Stability: 2 - Stable
404
404
405
405
Function pointer used with asynchronous thread-safe function calls. The callback
406
406
will be called on the main thread. Its purpose is to use a data item arriving
@@ -4526,7 +4526,7 @@ prevent the event loop from exiting. The APIs `napi_ref_threadsafe_function` and
4526
4526
4527
4527
### napi_create_threadsafe_function
4528
4528
4529
- > Stability: 1 - Experimental
4529
+ > Stability: 2 - Stable
4530
4530
4531
4531
<!-- YAML
4532
4532
added: v10.6.0
@@ -4569,7 +4569,7 @@ parameters and with `undefined` as its `this` value.
4569
4569
4570
4570
### napi_get_threadsafe_function_context
4571
4571
4572
- > Stability: 1 - Experimental
4572
+ > Stability: 2 - Stable
4573
4573
4574
4574
<!-- YAML
4575
4575
added: v10.6.0
@@ -4587,7 +4587,7 @@ This API may be called from any thread which makes use of `func`.
4587
4587
4588
4588
### napi_call_threadsafe_function
4589
4589
4590
- > Stability: 1 - Experimental
4590
+ > Stability: 2 - Stable
4591
4591
4592
4592
<!-- YAML
4593
4593
added: v10.6.0
@@ -4615,7 +4615,7 @@ This API may be called from any thread which makes use of `func`.
4615
4615
4616
4616
### napi_acquire_threadsafe_function
4617
4617
4618
- > Stability: 1 - Experimental
4618
+ > Stability: 2 - Stable
4619
4619
4620
4620
<!-- YAML
4621
4621
added: v10.6.0
@@ -4637,7 +4637,7 @@ This API may be called from any thread which will start making use of `func`.
4637
4637
4638
4638
### napi_release_threadsafe_function
4639
4639
4640
- > Stability: 1 - Experimental
4640
+ > Stability: 2 - Stable
4641
4641
4642
4642
<!-- YAML
4643
4643
added: v10.6.0
@@ -4665,7 +4665,7 @@ This API may be called from any thread which will stop making use of `func`.
4665
4665
4666
4666
### napi_ref_threadsafe_function
4667
4667
4668
- > Stability: 1 - Experimental
4668
+ > Stability: 2 - Stable
4669
4669
4670
4670
<!-- YAML
4671
4671
added: v10.6.0
@@ -4686,7 +4686,7 @@ This API may only be called from the main thread.
4686
4686
4687
4687
### napi_unref_threadsafe_function
4688
4688
4689
- > Stability: 1 - Experimental
4689
+ > Stability: 2 - Stable
4690
4690
4691
4691
<!-- YAML
4692
4692
added: v10.6.0
0 commit comments