mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
15 lines
373 B
Java
15 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);
|
|
}
|