- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
767 B
Java
24 lines
767 B
Java
package androidx.work.impl.background.systemjob;
|
|
|
|
import android.app.job.JobInfo;
|
|
import android.app.job.JobScheduler;
|
|
import androidx.annotation.RequiresApi;
|
|
import java.util.List;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
@RequiresApi(21)
|
|
/* loaded from: classes.dex */
|
|
final class JobScheduler21 {
|
|
public static final JobScheduler21 INSTANCE = new JobScheduler21();
|
|
|
|
private JobScheduler21() {
|
|
}
|
|
|
|
public final List<JobInfo> getAllPendingJobs(JobScheduler jobScheduler) {
|
|
Intrinsics.checkNotNullParameter(jobScheduler, "jobScheduler");
|
|
List<JobInfo> allPendingJobs = jobScheduler.getAllPendingJobs();
|
|
Intrinsics.checkNotNullExpressionValue(allPendingJobs, "jobScheduler.allPendingJobs");
|
|
return allPendingJobs;
|
|
}
|
|
}
|