mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
9 lines
199 B
Java
9 lines
199 B
Java
|
package androidx.work;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface RunnableScheduler {
|
||
|
void cancel(Runnable runnable);
|
||
|
|
||
|
void scheduleWithDelay(long delayInMillis, Runnable runnable);
|
||
|
}
|