-
Notifications
You must be signed in to change notification settings - Fork 623
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
PriorityLevel module no longer being used in Fiber #23
Comments
Based on my understanding (I can be wrong) it looks like the concept of priorities is gone for now. Instead we have "Sync" and "Async" units of work. If you look at the workLoop function we have:
So basically render everything right away if we're dealing with a regular update, or if it's an async update render it if we have the time to do so. |
You can find the different types of levels here though (if I understood the document correctly): |
It looks like the ReactPriorityLevel module was removed as of this commit. It looks like at least the link in the pendingWorkPriority section should be updated to reflect that. Is there anything else in that section that should be removed?
The text was updated successfully, but these errors were encountered: