Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/ads/zzgbt.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

52 lines
1.4 KiB
Java

package com.google.android.gms.internal.ads;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executor;
import java.util.concurrent.RejectedExecutionException;
/* loaded from: classes3.dex */
abstract class zzgbt extends zzgcp {
private final Executor zza;
final /* synthetic */ zzgbu zzb;
public zzgbt(zzgbu zzgbuVar, Executor executor) {
this.zzb = zzgbuVar;
executor.getClass();
this.zza = executor;
}
public abstract void zzc(Object obj);
@Override // com.google.android.gms.internal.ads.zzgcp
public final void zzd(Throwable th) {
this.zzb.zza = null;
if (th instanceof ExecutionException) {
this.zzb.zzd(((ExecutionException) th).getCause());
} else if (th instanceof CancellationException) {
this.zzb.cancel(false);
} else {
this.zzb.zzd(th);
}
}
@Override // com.google.android.gms.internal.ads.zzgcp
public final void zze(Object obj) {
this.zzb.zza = null;
zzc(obj);
}
public final void zzf() {
try {
this.zza.execute(this);
} catch (RejectedExecutionException e) {
this.zzb.zzd(e);
}
}
@Override // com.google.android.gms.internal.ads.zzgcp
public final boolean zzg() {
return this.zzb.isDone();
}
}