- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
29 lines
885 B
Java
29 lines
885 B
Java
package com.vungle.ads.internal.task;
|
|
|
|
import android.os.Bundle;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface Job {
|
|
int onRunJob(Bundle bundle, JobRunner jobRunner);
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
public @interface Result {
|
|
public static final Companion Companion = Companion.$$INSTANCE;
|
|
public static final int FAILURE = 1;
|
|
public static final int RESCHEDULE = 2;
|
|
public static final int SUCCESS = 0;
|
|
|
|
public static final class Companion {
|
|
static final /* synthetic */ Companion $$INSTANCE = new Companion();
|
|
public static final int FAILURE = 1;
|
|
public static final int RESCHEDULE = 2;
|
|
public static final int SUCCESS = 0;
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
}
|
|
}
|