- 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
27 lines
747 B
Java
27 lines
747 B
Java
package com.vungle.ads.internal.util;
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class ConcurrencyTimeoutProvider {
|
|
public static final Companion Companion = new Companion(null);
|
|
private static final long OPERATION_TIMEOUT = TimeUnit.SECONDS.toMillis(4);
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
|
|
public final long getTimeout() {
|
|
if (ThreadUtil.INSTANCE.isMainThread()) {
|
|
return OPERATION_TIMEOUT;
|
|
}
|
|
return Long.MAX_VALUE;
|
|
}
|
|
}
|