assert on UIBackground thread if UIBackground thread is available

Reviewed By: raluca-elena

Differential Revision: D5008046

fbshipit-source-id: 033b9ee76b331f6a4abcf4070e1a3206d7a8a422
This commit is contained in:
Aaron Chiu
2017-05-04 21:33:09 -07:00
committed by Facebook Github Bot
parent d353b75c12
commit 83a58f6c4f
2 changed files with 9 additions and 1 deletions

View File

@@ -312,6 +312,14 @@ public class ReactContext extends ContextWrapper {
return mUiBackgroundMessageQueueThread != null;
}
public void assertOnUIBackgroundOrNativeModulesThread() {
if (mUiBackgroundMessageQueueThread == null) {
assertOnNativeModulesQueueThread();
} else {
assertOnUiBackgroundQueueThread();
}
}
public void runUIBackgroundRunnable(Runnable runnable) {
if (mUiBackgroundMessageQueueThread == null) {
runOnNativeModulesQueueThread(runnable);

View File

@@ -233,7 +233,7 @@ public class UIManagerModule extends ReactContextBaseJavaModule implements
}
public void updateNodeSize(int nodeViewTag, int newWidth, int newHeight) {
getReactApplicationContext().assertOnNativeModulesQueueThread();
getReactApplicationContext().assertOnUIBackgroundOrNativeModulesThread();
mUIImplementation.updateNodeSize(nodeViewTag, newWidth, newHeight);
}