mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Android Events - setting default to true to use C++ event pipeline (#41036)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/41036 Changelog: [Added] - Shipping the new event dispatching pipeline that immediately moves events over to the C++ queue. This should unblock useDeferredValue + useTransition interruptibility on Android. Reviewed By: javache Differential Revision: D50365981 fbshipit-source-id: ecf60e5bc29fb4568463568a6ede4330e0294fd3
This commit is contained in:
committed by
Facebook GitHub Bot
parent
26b41456d2
commit
b816fa7a65
+1
-1
@@ -155,7 +155,7 @@ public class ReactFeatureFlags {
|
||||
public static boolean enableDefaultAsyncBatchedPriority = false;
|
||||
|
||||
/** Utilize shared Event C++ pipeline with fabric's renderer */
|
||||
public static boolean enableFabricSharedEventPipeline = false;
|
||||
public static boolean enableFabricSharedEventPipeline = true;
|
||||
|
||||
/** When enabled, Fabric will avoid cloning notes to perform state progression. */
|
||||
public static boolean enableClonelessStateProgression = false;
|
||||
|
||||
Reference in New Issue
Block a user