Skip to content

Commit

Permalink
Android Events - setting default to true to use C++ event pipeline (#…
Browse files Browse the repository at this point in the history
…41036)

Summary:
Pull Request resolved: #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
  • Loading branch information
Jesse Watts-Russell authored and facebook-github-bot committed Oct 17, 2023
1 parent 26b4145 commit b816fa7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b816fa7

Please sign in to comment.