Rabbit-R1/switch port/java/sources/androidx/work/impl/Scheduler.java
2024-05-21 17:08:36 -04:00

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);
}