mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-03 22:48:25 +08:00
Immediate dispatch 0 time timers
Summary: Calling setTimeout(f, 0) will currently schedule f to be called the next frame instead of immediately (which is how it behaves on iOS). This immediately calls back to JS and invokes the function. Reviewed By: astreet, tadeuzagallo Differential Revision: D3006125 fb-gh-sync-id: 9fa109ed82836a718cbb2e8cb21da4943d96f5f6 shipit-source-id: 9fa109ed82836a718cbb2e8cb21da4943d96f5f6
This commit is contained in:
committed by
Facebook Github Bot 1
parent
8d52567754
commit
ea882b6f16
@@ -110,7 +110,7 @@ public class TimingModuleTest {
|
||||
@Test
|
||||
public void testSimpleTimer() {
|
||||
mTiming.onHostResume();
|
||||
mTiming.createTimer(mExecutorTokenMock, 1, 0, 0, false);
|
||||
mTiming.createTimer(mExecutorTokenMock, 1, 1, 0, false);
|
||||
stepChoreographerFrame();
|
||||
verify(mJSTimersMock).callTimers(JavaOnlyArray.of(1));
|
||||
reset(mJSTimersMock);
|
||||
@@ -120,7 +120,7 @@ public class TimingModuleTest {
|
||||
|
||||
@Test
|
||||
public void testSimpleRecurringTimer() {
|
||||
mTiming.createTimer(mExecutorTokenMock, 100, 0, 0, true);
|
||||
mTiming.createTimer(mExecutorTokenMock, 100, 1, 0, true);
|
||||
mTiming.onHostResume();
|
||||
stepChoreographerFrame();
|
||||
verify(mJSTimersMock).callTimers(JavaOnlyArray.of(100));
|
||||
@@ -133,7 +133,7 @@ public class TimingModuleTest {
|
||||
@Test
|
||||
public void testCancelRecurringTimer() {
|
||||
mTiming.onHostResume();
|
||||
mTiming.createTimer(mExecutorTokenMock, 105, 0, 0, true);
|
||||
mTiming.createTimer(mExecutorTokenMock, 105, 1, 0, true);
|
||||
|
||||
stepChoreographerFrame();
|
||||
verify(mJSTimersMock).callTimers(JavaOnlyArray.of(105));
|
||||
@@ -147,7 +147,7 @@ public class TimingModuleTest {
|
||||
@Test
|
||||
public void testPausingAndResuming() {
|
||||
mTiming.onHostResume();
|
||||
mTiming.createTimer(mExecutorTokenMock, 41, 0, 0, true);
|
||||
mTiming.createTimer(mExecutorTokenMock, 41, 1, 0, true);
|
||||
|
||||
stepChoreographerFrame();
|
||||
verify(mJSTimersMock).callTimers(JavaOnlyArray.of(41));
|
||||
@@ -163,6 +163,12 @@ public class TimingModuleTest {
|
||||
verify(mJSTimersMock).callTimers(JavaOnlyArray.of(41));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSetTimeoutZero() {
|
||||
mTiming.createTimer(mExecutorTokenMock, 100, 0, 0, false);
|
||||
verify(mJSTimersMock).callTimers(JavaOnlyArray.of(100));
|
||||
}
|
||||
|
||||
private static class PostFrameCallbackHandler implements Answer<Void> {
|
||||
|
||||
private Choreographer.FrameCallback mFrameCallback;
|
||||
|
||||
Reference in New Issue
Block a user