Skip to content

Commit

Permalink
Removes the useSyncScheduling option
Browse files Browse the repository at this point in the history
Removes the useSyncScheduling option from the HostConfig, since it's no longer needed. See facebook/react#11771
  • Loading branch information
chentsulin authored Jan 18, 2018
1 parent ae7a928 commit cb05325
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions part-one.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ const WordRenderer = Reconciler({

now: () => performance.now(),

useSyncScheduling: true,

mutation: {
appendChild(parentInstance, child) {
if (parentInstance.appendChild) {
Expand Down Expand Up @@ -214,9 +212,6 @@ is required to make correct calls for example to create an element in html or in

This is an identity relation which means that it always returns the same value that was used as its argument. It was added for the TestRenderers.

**`useSyncScheduling`**
This property is used to down prioritize the children by checking whether the children are offscreen or not. In other words, if this property is true then the work in progress fiber has no expiration time

**`resetTextContent`**
Reset the text content of the parent before doing any insertions (inserting host nodes into the parent). This is similar to double buffering technique in OpenGl where the buffer is cleared before writing new pixels to it and perform rasterization.

Expand Down

0 comments on commit cb05325

Please sign in to comment.