-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): Add ability to configure zone change detection to use zon…
…eless scheduler (#55252) This commit adds a configuration option to zone-based change detection which allows applications to enable/disable the zoneless scheduler. When the zoneless scheduler is enabled in zone-based applications, updates that happen outside the Angular zone will still result in a change detection being scheduled. Previously, Angular change detection was solely based on the state of the Angular Zone. PR Close #55252
- Loading branch information
Showing
17 changed files
with
42 additions
and
67 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -461,9 +461,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -506,9 +506,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -383,9 +383,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -440,9 +440,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -527,9 +527,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -515,9 +515,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -296,9 +296,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "SimpleChange" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -440,9 +440,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -650,9 +650,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "SecurityContext" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -347,9 +347,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -413,9 +413,6 @@ | |
{ | ||
"name": "Sanitizer" | ||
}, | ||
{ | ||
"name": "SchedulingMode" | ||
}, | ||
{ | ||
"name": "ShadowDomRenderer" | ||
}, | ||
|
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