-
-
Notifications
You must be signed in to change notification settings - Fork 498
Implement AsyncContext class #252
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
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| # AsyncContext | ||
|
|
||
| The [Napi::AsyncWorker](async_worker.md) class may not be appropriate for every | ||
| scenario. When using any other async mechanism, introducing a new class | ||
| `Napi::AsyncContext` is necessary to ensure an async operation is properly | ||
| tracked by the runtime. The `Napi::AsyncContext` class can be passed to | ||
| [Napi::Function::MakeCallback()](function.md) method to properly restore the | ||
| correct async execution context. | ||
|
|
||
| ## Methods | ||
|
|
||
| ### Constructor | ||
|
|
||
| Creates a new `Napi::AsyncContext`. | ||
|
|
||
| ```cpp | ||
| explicit Napi::AsyncContext::AsyncContext(napi_env env, const char* resource_name); | ||
| ``` | ||
|
|
||
| - `[in] env`: The environment in which to create the `Napi::AsyncContext`. | ||
| - `[in] resource_name`: Null-terminated strings that represents the | ||
| identifier for the kind of resource that is being provided for diagnostic | ||
| information exposed by the `async_hooks` API. | ||
|
|
||
| ### Constructor | ||
|
|
||
| Creates a new `Napi::AsyncContext`. | ||
|
|
||
| ```cpp | ||
| explicit Napi::AsyncContext::AsyncContext(napi_env env, const char* resource_name, const Napi::Object& resource); | ||
| ``` | ||
|
|
||
| - `[in] env`: The environment in which to create the `Napi::AsyncContext`. | ||
| - `[in] resource_name`: Null-terminated strings that represents the | ||
| identifier for the kind of resource that is being provided for diagnostic | ||
| information exposed by the `async_hooks` API. | ||
| - `[in] resource`: Object associated with the asynchronous operation that | ||
| will be passed to possible `async_hooks`. | ||
|
|
||
| ### Destructor | ||
|
|
||
| The `Napi::AsyncContext` to be destroyed. | ||
|
|
||
| ```cpp | ||
| virtual Napi::AsyncContext::~AsyncContext(); | ||
| ``` | ||
|
|
||
| ## Operator | ||
|
|
||
| ```cpp | ||
| Napi::AsyncContext::operator napi_async_context() const; | ||
| ``` | ||
|
|
||
| Returns the N-API `napi_async_context` wrapped by the `Napi::AsyncContext` | ||
| object. This can be used to mix usage of the C N-API and node-addon-api. | ||
|
|
||
| ## Example | ||
|
|
||
| ```cpp | ||
| #include "napi.h" | ||
|
|
||
| void MakeCallbackWithAsyncContext(const Napi::CallbackInfo& info) { | ||
| Napi::Function callback = info[0].As<Napi::Function>(); | ||
| Napi::Object resource = info[1].As<Napi::Object>(); | ||
|
|
||
| // Creat a new async context instance. | ||
| Napi::AsyncContext context(info.Env(), "async_context_test", resource); | ||
|
|
||
| // Invoke the callback with the async context instance. | ||
| callback.MakeCallback(Napi::Object::New(info.Env()), | ||
| std::initializer_list<napi_value>{}, context); | ||
|
|
||
| // The async context instance is automatically destroyed here because it's | ||
| // block-scope like `Napi::HandleScope`. | ||
| } | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.