- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
52 lines
1.4 KiB
Java
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();
|
|
}
|
|
}
|