@@ -223,15 +223,15 @@ This is an opaque pointer that is used to represent a JavaScript value.
223223
224224### napi_threadsafe_function
225225
226- > Stability: 1 - Experimental
226+ > Stability: 2 - Stable
227227
228228This is an opaque pointer that represents a JavaScript function which can be
229229called asynchronously from multiple threads via
230230`napi_call_threadsafe_function()`.
231231
232232### napi_threadsafe_function_release_mode
233233
234- > Stability: 1 - Experimental
234+ > Stability: 2 - Stable
235235
236236A value to be given to `napi_release_threadsafe_function()` to indicate whether
237237the thread-safe function is to be closed immediately (`napi_tsfn_abort`) or
@@ -246,7 +246,7 @@ typedef enum {
246246
247247### napi_threadsafe_function_call_mode
248248
249- > Stability: 1 - Experimental
249+ > Stability: 2 - Stable
250250
251251A value to be given to `napi_call_threadsafe_function()` to indicate whether
252252the call should block whenever the queue associated with the thread-safe
@@ -341,7 +341,7 @@ typedef void (*napi_async_complete_callback)(napi_env env,
341341
342342#### napi_threadsafe_function_call_js
343343
344- > Stability: 1 - Experimental
344+ > Stability: 2 - Stable
345345
346346Function pointer used with asynchronous thread-safe function calls. The callback
347347will be called on the main thread. Its purpose is to use a data item arriving
@@ -4458,7 +4458,7 @@ prevent the event loop from exiting. The APIs `napi_ref_threadsafe_function` and
44584458
44594459### napi_create_threadsafe_function
44604460
4461- > Stability: 1 - Experimental
4461+ > Stability: 2 - Stable
44624462
44634463<!-- YAML
44644464added: v10.6.0
@@ -4501,7 +4501,7 @@ parameters and with `undefined` as its `this` value.
45014501
45024502### napi_get_threadsafe_function_context
45034503
4504- > Stability: 1 - Experimental
4504+ > Stability: 2 - Stable
45054505
45064506<!-- YAML
45074507added: v10.6.0
@@ -4519,7 +4519,7 @@ This API may be called from any thread which makes use of `func`.
45194519
45204520### napi_call_threadsafe_function
45214521
4522- > Stability: 1 - Experimental
4522+ > Stability: 2 - Stable
45234523
45244524<!-- YAML
45254525added: v10.6.0
@@ -4547,7 +4547,7 @@ This API may be called from any thread which makes use of `func`.
45474547
45484548### napi_acquire_threadsafe_function
45494549
4550- > Stability: 1 - Experimental
4550+ > Stability: 2 - Stable
45514551
45524552<!-- YAML
45534553added: v10.6.0
@@ -4569,7 +4569,7 @@ This API may be called from any thread which will start making use of `func`.
45694569
45704570### napi_release_threadsafe_function
45714571
4572- > Stability: 1 - Experimental
4572+ > Stability: 2 - Stable
45734573
45744574<!-- YAML
45754575added: v10.6.0
@@ -4597,7 +4597,7 @@ This API may be called from any thread which will stop making use of `func`.
45974597
45984598### napi_ref_threadsafe_function
45994599
4600- > Stability: 1 - Experimental
4600+ > Stability: 2 - Stable
46014601
46024602<!-- YAML
46034603added: v10.6.0
@@ -4618,7 +4618,7 @@ This API may only be called from the main thread.
46184618
46194619### napi_unref_threadsafe_function
46204620
4621- > Stability: 1 - Experimental
4621+ > Stability: 2 - Stable
46224622
46234623<!-- YAML
46244624added: v10.6.0
0 commit comments