- 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
56 lines
1.9 KiB
Java
56 lines
1.9 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
import com.google.common.util.concurrent.ListenableFuture;
|
|
import com.ironsource.v8;
|
|
import java.util.concurrent.ScheduledExecutorService;
|
|
import java.util.concurrent.ScheduledFuture;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
/* loaded from: classes3.dex */
|
|
final class zzgdf extends zzgbx {
|
|
private ListenableFuture zza;
|
|
private ScheduledFuture zzb;
|
|
|
|
public static ListenableFuture zzf(ListenableFuture listenableFuture, long j, TimeUnit timeUnit, ScheduledExecutorService scheduledExecutorService) {
|
|
zzgdf zzgdfVar = new zzgdf(listenableFuture);
|
|
zzgdc zzgdcVar = new zzgdc(zzgdfVar);
|
|
zzgdfVar.zzb = scheduledExecutorService.schedule(zzgdcVar, j, timeUnit);
|
|
listenableFuture.addListener(zzgdcVar, zzgbv.INSTANCE);
|
|
return zzgdfVar;
|
|
}
|
|
|
|
@Override // com.google.android.gms.internal.ads.zzgax
|
|
public final String zza() {
|
|
ListenableFuture listenableFuture = this.zza;
|
|
ScheduledFuture scheduledFuture = this.zzb;
|
|
if (listenableFuture == null) {
|
|
return null;
|
|
}
|
|
String str = "inputFuture=[" + listenableFuture.toString() + v8.i.e;
|
|
if (scheduledFuture == null) {
|
|
return str;
|
|
}
|
|
long delay = scheduledFuture.getDelay(TimeUnit.MILLISECONDS);
|
|
if (delay <= 0) {
|
|
return str;
|
|
}
|
|
return str + ", remaining delay=[" + delay + " ms]";
|
|
}
|
|
|
|
@Override // com.google.android.gms.internal.ads.zzgax
|
|
public final void zzb() {
|
|
zzr(this.zza);
|
|
ScheduledFuture scheduledFuture = this.zzb;
|
|
if (scheduledFuture != null) {
|
|
scheduledFuture.cancel(false);
|
|
}
|
|
this.zza = null;
|
|
this.zzb = null;
|
|
}
|
|
|
|
private zzgdf(ListenableFuture listenableFuture) {
|
|
listenableFuture.getClass();
|
|
this.zza = listenableFuture;
|
|
}
|
|
}
|