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

Implement AsyncProgressQueueWorker #585

Closed

Conversation

legendecas
Copy link
Member

@legendecas legendecas commented Nov 2, 2019

Although this patch comes along with a lot of changes on either Napi::AsyncWorker and Napi::AsyncProgressWorker, there are no changes in the existing code expected. (i.e. tests of Napi::AsyncWorker and Napi::AsyncProgressWorker shall pass without any modification)

Fixes: #582

@legendecas legendecas marked this pull request as ready for review November 2, 2019 02:51
@legendecas legendecas force-pushed the async-progress-queue-worker branch 3 times, most recently from 5908617 to dc63ed8 Compare November 2, 2019 05:34
@legendecas
Copy link
Member Author

Shall hold until we landed #589.

@mhdawson
Copy link
Member

@legendecas #589 has now landed so you can rebase/proceed.

@mhdawson
Copy link
Member

Discussed in last N-API team meeting, still one aspect to be completed, but @legendecas would like feedback on what is there so far.

@mhdawson
Copy link
Member

@nodejs/addon-api this is ready for review.

doc/async_worker_variants.md Outdated Show resolved Hide resolved
doc/async_worker_variants.md Outdated Show resolved Hide resolved
doc/async_worker_variants.md Outdated Show resolved Hide resolved
doc/async_worker_variants.md Outdated Show resolved Hide resolved
doc/async_worker_variants.md Outdated Show resolved Hide resolved
test/asyncprogressqueueworker.cc Outdated Show resolved Hide resolved
test/asyncprogressqueueworker.cc Outdated Show resolved Hide resolved
ProgressData data{0};
for (int32_t idx = 0; idx < _times; idx++) {
data.progress = idx;
progress.Send(&data, 1);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should copy here and free in the JS thread.

test/asyncprogressqueueworker.cc Outdated Show resolved Hide resolved
test/asyncprogressqueueworker.cc Outdated Show resolved Hide resolved
@mhdawson
Copy link
Member

I'm not sure putting the doc for both classes into the same file make sense. I think it would stick to having one file to doc each class as we have for most classes. @NickNaso what do you think?

@legendecas
Copy link
Member Author

@mhdawson: I'm not sure putting the doc for both classes into the same file make sense. I think it would stick to having one file to doc each class as we have for most classes. @NickNaso what do you think?

I put them in a single doc file because they shared much similar behavior. It can be verbose if we separate those docs into different files.

Copy link
Member

@mhdawson mhdawson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

mhdawson pushed a commit that referenced this pull request Mar 18, 2020
PR-URL: #585
Fixes: #582
Reviewed-By: Michael Dawson <[email protected]>
Reviewed-By: Gabriel Schulhof <[email protected]>
@mhdawson
Copy link
Member

Landed as ab01844

@mhdawson mhdawson closed this Mar 18, 2020
@legendecas legendecas deleted the async-progress-queue-worker branch March 19, 2020 02:38
@gabrielschulhof
Copy link
Contributor

According to git bisect, this causes #695. @legendecas, could you PTAL?

kevindavies8 added a commit to kevindavies8/node-addon-api-Develop that referenced this pull request Aug 24, 2022
Marlyfleitas added a commit to Marlyfleitas/node-api-addon-Development that referenced this pull request Aug 26, 2022
wroy7860 added a commit to wroy7860/addon-api-benchmark-node that referenced this pull request Sep 19, 2022
johnfrench3 pushed a commit to johnfrench3/node-addon-api-git that referenced this pull request Aug 11, 2023
PR-URL: nodejs/node-addon-api#585
Fixes: nodejs/node-addon-api#582
Reviewed-By: Michael Dawson <[email protected]>
Reviewed-By: Gabriel Schulhof <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow overriding AsyncWorker::OnWorkComplete etc
3 participants