mirror of
https://github.com/status-im/react-native.git
synced 2025-02-27 16:40:38 +00:00
add flag to test running BG UI operation on a separate thread from the native modules thread
Reviewed By: achen1 Differential Revision: D4912045 fbshipit-source-id: b0b1aea24f8d463b95369636b7df2422a23aab22
This commit is contained in:
parent
97a86634f7
commit
3a3e5affc3
@ -152,6 +152,7 @@ public class ReactInstanceManager {
|
||||
private final boolean mLazyNativeModulesEnabled;
|
||||
private final boolean mLazyViewManagersEnabled;
|
||||
private final boolean mSetupReactContextInBackgroundEnabled;
|
||||
private final boolean mUseSeparateUIBackgroundThread;
|
||||
|
||||
private final ReactInstanceDevCommandsHandler mDevInterface =
|
||||
new ReactInstanceDevCommandsHandler() {
|
||||
@ -223,7 +224,8 @@ public class ReactInstanceManager {
|
||||
@Nullable RedBoxHandler redBoxHandler,
|
||||
boolean lazyNativeModulesEnabled,
|
||||
boolean lazyViewManagersEnabled,
|
||||
boolean setupReactContextInBackgroundEnabled) {
|
||||
boolean setupReactContextInBackgroundEnabled,
|
||||
boolean useSeparateUIBackgroundThread) {
|
||||
|
||||
initializeSoLoaderIfNecessary(applicationContext);
|
||||
|
||||
@ -253,6 +255,7 @@ public class ReactInstanceManager {
|
||||
mLazyNativeModulesEnabled = lazyNativeModulesEnabled;
|
||||
mLazyViewManagersEnabled = lazyViewManagersEnabled;
|
||||
mSetupReactContextInBackgroundEnabled = setupReactContextInBackgroundEnabled;
|
||||
mUseSeparateUIBackgroundThread = useSeparateUIBackgroundThread;
|
||||
|
||||
// Instantiate ReactChoreographer in UI thread.
|
||||
ReactChoreographer.initialize();
|
||||
|
@ -43,6 +43,7 @@ public class ReactInstanceManagerBuilder {
|
||||
protected boolean mLazyNativeModulesEnabled;
|
||||
protected boolean mLazyViewManagersEnabled;
|
||||
protected boolean mSetupReactContextInBackground;
|
||||
protected boolean mUseSeparateUIBackgroundThread;
|
||||
|
||||
/* package protected */ ReactInstanceManagerBuilder() {
|
||||
}
|
||||
@ -193,6 +194,12 @@ public class ReactInstanceManagerBuilder {
|
||||
return this;
|
||||
}
|
||||
|
||||
public ReactInstanceManagerBuilder setUseSeparateUIBackgroundThread(
|
||||
boolean useSeparateUIBackgroundThread) {
|
||||
mUseSeparateUIBackgroundThread = useSeparateUIBackgroundThread;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiates a new {@link ReactInstanceManager}.
|
||||
* Before calling {@code build}, the following must be called:
|
||||
@ -238,6 +245,7 @@ public class ReactInstanceManagerBuilder {
|
||||
mRedBoxHandler,
|
||||
mLazyNativeModulesEnabled,
|
||||
mLazyViewManagersEnabled,
|
||||
mSetupReactContextInBackground);
|
||||
mSetupReactContextInBackground,
|
||||
mUseSeparateUIBackgroundThread);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user