Files
rr3-apk/decompiled/sources/androidx/work/impl/StartStopTokens.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

62 lines
1.9 KiB
Java

package androidx.work.impl;
import androidx.work.impl.model.WorkGenerationalId;
import androidx.work.impl.model.WorkSpec;
import androidx.work.impl.model.WorkSpecKt;
import java.util.List;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public interface StartStopTokens {
public static final Companion Companion = Companion.$$INSTANCE;
static StartStopTokens create() {
return Companion.create();
}
static StartStopTokens create(boolean z) {
return Companion.create(z);
}
boolean contains(WorkGenerationalId workGenerationalId);
StartStopToken remove(WorkGenerationalId workGenerationalId);
List<StartStopToken> remove(String str);
StartStopToken tokenFor(WorkGenerationalId workGenerationalId);
default StartStopToken tokenFor(WorkSpec spec) {
Intrinsics.checkNotNullParameter(spec, "spec");
return tokenFor(WorkSpecKt.generationalId(spec));
}
default StartStopToken remove(WorkSpec spec) {
Intrinsics.checkNotNullParameter(spec, "spec");
return remove(WorkSpecKt.generationalId(spec));
}
public static final class Companion {
static final /* synthetic */ Companion $$INSTANCE = new Companion();
public final StartStopTokens create() {
return create$default(this, false, 1, null);
}
private Companion() {
}
public static /* synthetic */ StartStopTokens create$default(Companion companion, boolean z, int i, Object obj) {
if ((i & 1) != 0) {
z = true;
}
return companion.create(z);
}
public final StartStopTokens create(boolean z) {
StartStopTokensImpl startStopTokensImpl = new StartStopTokensImpl();
return z ? new SynchronizedStartStopTokensImpl(startStopTokensImpl) : startStopTokensImpl;
}
}
}