- 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
130 lines
2.9 KiB
Java
130 lines
2.9 KiB
Java
package com.ironsource;
|
|
|
|
import android.os.Handler;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class js implements wn {
|
|
private final Handler a;
|
|
private final long b;
|
|
private long c;
|
|
private long d;
|
|
private long e;
|
|
private final b f;
|
|
|
|
public static final class a {
|
|
private final long a;
|
|
private final long b;
|
|
|
|
public a(long j, long j2) {
|
|
this.a = j;
|
|
this.b = j2;
|
|
}
|
|
|
|
public static /* synthetic */ a a(a aVar, long j, long j2, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
j = aVar.a;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
j2 = aVar.b;
|
|
}
|
|
return aVar.a(j, j2);
|
|
}
|
|
|
|
public final long a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final a a(long j, long j2) {
|
|
return new a(j, j2);
|
|
}
|
|
|
|
public final long b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final long c() {
|
|
return this.a;
|
|
}
|
|
|
|
public final long d() {
|
|
return this.b;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof a)) {
|
|
return false;
|
|
}
|
|
a aVar = (a) obj;
|
|
return this.a == aVar.a && this.b == aVar.b;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (Long.hashCode(this.a) * 31) + Long.hashCode(this.b);
|
|
}
|
|
|
|
public String toString() {
|
|
return "Status(remainingTime=" + this.a + ", timePassed=" + this.b + ')';
|
|
}
|
|
}
|
|
|
|
public static final class b extends yp {
|
|
final /* synthetic */ Runnable a;
|
|
|
|
public b(Runnable runnable) {
|
|
this.a = runnable;
|
|
}
|
|
|
|
@Override // com.ironsource.yp
|
|
public void a() {
|
|
this.a.run();
|
|
}
|
|
}
|
|
|
|
public js(Handler handler, Runnable task, long j) {
|
|
Intrinsics.checkNotNullParameter(handler, "handler");
|
|
Intrinsics.checkNotNullParameter(task, "task");
|
|
this.a = handler;
|
|
this.b = j;
|
|
this.f = new b(task);
|
|
this.e = c();
|
|
a();
|
|
}
|
|
|
|
private final long c() {
|
|
return System.currentTimeMillis();
|
|
}
|
|
|
|
private final long d() {
|
|
return this.b - this.c;
|
|
}
|
|
|
|
@Override // com.ironsource.wn
|
|
public a a() {
|
|
if (e()) {
|
|
this.d = c();
|
|
this.e = 0L;
|
|
this.a.postDelayed(this.f, d());
|
|
}
|
|
return new a(d(), this.c);
|
|
}
|
|
|
|
@Override // com.ironsource.wn
|
|
public a b() {
|
|
if (!e()) {
|
|
long c = c();
|
|
this.e = c;
|
|
this.c += c - this.d;
|
|
this.a.removeCallbacks(this.f);
|
|
}
|
|
return new a(d(), this.c);
|
|
}
|
|
|
|
public final boolean e() {
|
|
return this.e > 0;
|
|
}
|
|
}
|