Summary: Treat calls to Thread.sleep as blocking, even when the timeouts are less than the ANR limit. Reviewed By: da319 Differential Revision: D9027950 fbshipit-source-id: 001409896master
parent
332bd365e8
commit
3870ebb747
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Copyright (c) 2018-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
import android.support.annotation.UiThread;
|
||||
import java.lang.Thread;
|
||||
|
||||
class ThreadSleep {
|
||||
void sleepOnAnyThreadOk() throws InterruptedException {
|
||||
Thread.sleep(60);
|
||||
}
|
||||
|
||||
@UiThread
|
||||
void sleepOnUIThreadBad() throws InterruptedException {
|
||||
Thread.sleep(60);
|
||||
}
|
||||
|
||||
Object lock;
|
||||
|
||||
@UiThread
|
||||
void indirectSleepOnUIThreadBad() {
|
||||
synchronized(lock) {}
|
||||
}
|
||||
|
||||
void lockAndSleepOnNonUIThread() throws InterruptedException {
|
||||
synchronized(lock) {
|
||||
sleepOnAnyThreadOk();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue