@@ -171,15 +171,15 @@ This is an opaque pointer that is used to represent a JavaScript value.
171171
172172### napi_threadsafe_function
173173
174- > Stability: 1 - Experimental
174+ > Stability: 2 - Stable
175175
176176This is an opaque pointer that represents a JavaScript function which can be
177177called asynchronously from multiple threads via
178178`napi_call_threadsafe_function()`.
179179
180180### napi_threadsafe_function_release_mode
181181
182- > Stability: 1 - Experimental
182+ > Stability: 2 - Stable
183183
184184A value to be given to `napi_release_threadsafe_function()` to indicate whether
185185the thread-safe function is to be closed immediately (`napi_tsfn_abort`) or
@@ -194,7 +194,7 @@ typedef enum {
194194
195195### napi_threadsafe_function_call_mode
196196
197- > Stability: 1 - Experimental
197+ > Stability: 2 - Stable
198198
199199A value to be given to `napi_call_threadsafe_function()` to indicate whether
200200the call should block whenever the queue associated with the thread-safe
@@ -285,7 +285,7 @@ typedef void (*napi_async_complete_callback)(napi_env env,
285285
286286#### napi_threadsafe_function_call_js
287287
288- > Stability: 1 - Experimental
288+ > Stability: 2 - Stable
289289
290290Function pointer used with asynchronous thread-safe function calls. The callback
291291will be called on the main thread. Its purpose is to use a data item arriving
@@ -4184,7 +4184,7 @@ prevent the event loop from exiting. The APIs `napi_ref_threadsafe_function` and
41844184
41854185### napi_create_threadsafe_function
41864186
4187- > Stability: 1 - Experimental
4187+ > Stability: 2 - Stable
41884188
41894189<!-- YAML
41904190added: REPLACEME
@@ -4227,7 +4227,7 @@ parameters and with `undefined` as its `this` value.
42274227
42284228### napi_get_threadsafe_function_context
42294229
4230- > Stability: 1 - Experimental
4230+ > Stability: 2 - Stable
42314231
42324232<!-- YAML
42334233added: REPLACEME
@@ -4245,7 +4245,7 @@ This API may be called from any thread which makes use of `func`.
42454245
42464246### napi_call_threadsafe_function
42474247
4248- > Stability: 1 - Experimental
4248+ > Stability: 2 - Stable
42494249
42504250<!-- YAML
42514251added: REPLACEME
@@ -4273,7 +4273,7 @@ This API may be called from any thread which makes use of `func`.
42734273
42744274### napi_acquire_threadsafe_function
42754275
4276- > Stability: 1 - Experimental
4276+ > Stability: 2 - Stable
42774277
42784278<!-- YAML
42794279added: REPLACEME
@@ -4295,7 +4295,7 @@ This API may be called from any thread which will start making use of `func`.
42954295
42964296### napi_release_threadsafe_function
42974297
4298- > Stability: 1 - Experimental
4298+ > Stability: 2 - Stable
42994299
43004300<!-- YAML
43014301added: REPLACEME
@@ -4323,7 +4323,7 @@ This API may be called from any thread which will stop making use of `func`.
43234323
43244324### napi_ref_threadsafe_function
43254325
4326- > Stability: 1 - Experimental
4326+ > Stability: 2 - Stable
43274327
43284328<!-- YAML
43294329added: REPLACEME
@@ -4344,7 +4344,7 @@ This API may only be called from the main thread.
43444344
43454345### napi_unref_threadsafe_function
43464346
4347- > Stability: 1 - Experimental
4347+ > Stability: 2 - Stable
43484348
43494349<!-- YAML
43504350added: REPLACEME
0 commit comments