mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Add asserts and annotations for FabricUIManager UI-thread methods
Summary: These methods are (or should be) only called on the UI thread. Make those assumptions explicit. Reviewed By: mdvacca Differential Revision: D17865205 fbshipit-source-id: 9b3acf8f3215a07b1a667ced55e50e99a488de79
This commit is contained in:
committed by
Facebook Github Bot
parent
8fdf85685c
commit
7c20dc65d9
@@ -6,6 +6,7 @@
|
||||
*/
|
||||
package com.facebook.react.fabric;
|
||||
|
||||
import static com.facebook.infer.annotation.ThreadConfined.ANY;
|
||||
import static com.facebook.infer.annotation.ThreadConfined.UI;
|
||||
import static com.facebook.react.fabric.FabricComponents.getFabricComponentName;
|
||||
import static com.facebook.react.fabric.mounting.LayoutMetricsConversions.getMaxSize;
|
||||
@@ -162,6 +163,7 @@ public class FabricUIManager implements UIManager, LifecycleEventListener {
|
||||
return rootTag;
|
||||
}
|
||||
|
||||
@ThreadConfined(ANY)
|
||||
public <T extends View> int startSurface(
|
||||
final T rootView,
|
||||
final String moduleName,
|
||||
@@ -194,6 +196,7 @@ public class FabricUIManager implements UIManager, LifecycleEventListener {
|
||||
mEventDispatcher.dispatchAllEvents();
|
||||
}
|
||||
|
||||
@ThreadConfined(ANY)
|
||||
public void stopSurface(int surfaceID) {
|
||||
mBinding.stopSurface(surfaceID);
|
||||
}
|
||||
@@ -379,7 +382,9 @@ public class FabricUIManager implements UIManager, LifecycleEventListener {
|
||||
}
|
||||
|
||||
@Override
|
||||
@ThreadConfined(UI)
|
||||
public void synchronouslyUpdateViewOnUIThread(int reactTag, ReadableMap props) {
|
||||
UiThreadUtil.assertOnUiThread();
|
||||
long time = SystemClock.uptimeMillis();
|
||||
int commitNumber = mCurrentSynchronousCommitNumber++;
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user