mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
16 lines
373 B
Java
16 lines
373 B
Java
|
package androidx.work.impl;
|
||
|
|
||
|
import androidx.work.impl.model.WorkSpec;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public interface Scheduler {
|
||
|
public static final int MAX_GREEDY_SCHEDULER_LIMIT = 200;
|
||
|
public static final int MAX_SCHEDULER_LIMIT = 50;
|
||
|
|
||
|
void cancel(String workSpecId);
|
||
|
|
||
|
boolean hasLimitedSchedulingSlots();
|
||
|
|
||
|
void schedule(WorkSpec... workSpecs);
|
||
|
}
|