Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: remove stability highlight for stable functions #27753

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions doc/api/n-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,16 +283,12 @@ This is an opaque pointer that is used to represent a JavaScript value.

### napi_threadsafe_function

> Stability: 2 - Stable

This is an opaque pointer that represents a JavaScript function which can be
called asynchronously from multiple threads via
`napi_call_threadsafe_function()`.

### napi_threadsafe_function_release_mode

> Stability: 2 - Stable

A value to be given to `napi_release_threadsafe_function()` to indicate whether
the thread-safe function is to be closed immediately (`napi_tsfn_abort`) or
merely released (`napi_tsfn_release`) and thus available for subsequent use via
Expand All @@ -306,8 +302,6 @@ typedef enum {

### napi_threadsafe_function_call_mode

> Stability: 2 - Stable

A value to be given to `napi_call_threadsafe_function()` to indicate whether
the call should block whenever the queue associated with the thread-safe
function is full.
Expand Down Expand Up @@ -401,8 +395,6 @@ typedef void (*napi_async_complete_callback)(napi_env env,

#### napi_threadsafe_function_call_js

> Stability: 2 - Stable

Function pointer used with asynchronous thread-safe function calls. The callback
will be called on the main thread. Its purpose is to use a data item arriving
via the queue from one of the secondary threads to construct the parameters
Expand Down Expand Up @@ -4599,8 +4591,6 @@ prevent the event loop from exiting. The APIs `napi_ref_threadsafe_function` and

### napi_create_threadsafe_function

> Stability: 2 - Stable

<!-- YAML
added: v10.6.0
napiVersion: 4
Expand Down Expand Up @@ -4643,8 +4633,6 @@ parameters and with `undefined` as its `this` value.

### napi_get_threadsafe_function_context

> Stability: 2 - Stable

<!-- YAML
added: v10.6.0
napiVersion: 4
Expand All @@ -4662,8 +4650,6 @@ This API may be called from any thread which makes use of `func`.

### napi_call_threadsafe_function

> Stability: 2 - Stable

<!-- YAML
added: v10.6.0
napiVersion: 4
Expand Down Expand Up @@ -4691,8 +4677,6 @@ This API may be called from any thread which makes use of `func`.

### napi_acquire_threadsafe_function

> Stability: 2 - Stable

<!-- YAML
added: v10.6.0
napiVersion: 4
Expand All @@ -4714,8 +4698,6 @@ This API may be called from any thread which will start making use of `func`.

### napi_release_threadsafe_function

> Stability: 2 - Stable

<!-- YAML
added: v10.6.0
napiVersion: 4
Expand Down Expand Up @@ -4743,8 +4725,6 @@ This API may be called from any thread which will stop making use of `func`.

### napi_ref_threadsafe_function

> Stability: 2 - Stable

<!-- YAML
added: v10.6.0
napiVersion: 4
Expand All @@ -4765,8 +4745,6 @@ This API may only be called from the main thread.

### napi_unref_threadsafe_function

> Stability: 2 - Stable

<!-- YAML
added: v10.6.0
napiVersion: 4
Expand Down