-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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: add PerformanceObserver buffered
document
#39514
Closed
legendecas
wants to merge
1
commit into
nodejs:master
from
legendecas:doc/perf_hooks_observe_buffered
Closed
doc: add PerformanceObserver buffered
document
#39514
legendecas
wants to merge
1
commit into
nodejs:master
from
legendecas:doc/perf_hooks_observe_buffered
Conversation
This file contains 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
nodejs-github-bot
added
doc
Issues and PRs related to the documentations.
perf_hooks
Issues and PRs related to the implementation of the Performance Timing API.
labels
Jul 25, 2021
legendecas
force-pushed
the
doc/perf_hooks_observe_buffered
branch
from
July 25, 2021 15:58
c92dbbf
to
d09b20d
Compare
The option `buffered` is not about queueing the `PerformanceEntry`s with loop or not. The current (and the spec) behavior is different with Node.js version <= v16.0.0
legendecas
force-pushed
the
doc/perf_hooks_observe_buffered
branch
from
July 25, 2021 16:16
d09b20d
to
f2af078
Compare
aduh95
approved these changes
Jul 25, 2021
benjamingr
approved these changes
Jul 25, 2021
@@ -585,6 +585,10 @@ Disconnects the `PerformanceObserver` instance from all notifications. | |||
<!-- YAML | |||
added: v8.5.0 | |||
changes: | |||
- version: REPLACEME | |||
pr-url: https://github.com/nodejs/node/pull/39297 |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
Landed in 497e5f8 |
legendecas
added a commit
that referenced
this pull request
Jul 27, 2021
The option buffered is not about queueing the PerformanceEntrys with an event loop task or not. The option buffered in the spec is about filling the observer with the global PerformanceEntry buffer. The current (and the spec) behavior is different with Node.js version <= v16.0.0. PR-URL: #39514 Refs: https://w3c.github.io/performance-timeline/#observe-method Refs: https://nodejs.org/dist/latest-v14.x/docs/api/perf_hooks.html#perf_hooks_performanceobserver_observe_options Refs: #39297 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 task
targos
pushed a commit
that referenced
this pull request
Aug 2, 2021
The option buffered is not about queueing the PerformanceEntrys with an event loop task or not. The option buffered in the spec is about filling the observer with the global PerformanceEntry buffer. The current (and the spec) behavior is different with Node.js version <= v16.0.0. PR-URL: #39514 Refs: https://w3c.github.io/performance-timeline/#observe-method Refs: https://nodejs.org/dist/latest-v14.x/docs/api/perf_hooks.html#perf_hooks_performanceobserver_observe_options Refs: #39297 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
danielleadams
pushed a commit
that referenced
this pull request
Aug 16, 2021
The option buffered is not about queueing the PerformanceEntrys with an event loop task or not. The option buffered in the spec is about filling the observer with the global PerformanceEntry buffer. The current (and the spec) behavior is different with Node.js version <= v16.0.0. PR-URL: #39514 Refs: https://w3c.github.io/performance-timeline/#observe-method Refs: https://nodejs.org/dist/latest-v14.x/docs/api/perf_hooks.html#perf_hooks_performanceobserver_observe_options Refs: #39297 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
doc
Issues and PRs related to the documentations.
perf_hooks
Issues and PRs related to the implementation of the Performance Timing API.
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.
The option
buffered
is not about queueing thePerformanceEntry
s withan event loop task or not. The option
buffered
in the spec is about fillingthe observer with the global
PerformanceEntry
buffer. The current(and the spec) behavior is different with Node.js version <= v16.0.0.
Refs: https://w3c.github.io/performance-timeline/#observe-method
Refs: https://nodejs.org/dist/latest-v14.x/docs/api/perf_hooks.html#perf_hooks_performanceobserver_observe_options
Refs: #39297