- 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
83 lines
1.7 KiB
Java
83 lines
1.7 KiB
Java
package com.ironsource;
|
|
|
|
import com.ironsource.ot;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface mt {
|
|
|
|
public interface a {
|
|
void a();
|
|
}
|
|
|
|
public static final class b {
|
|
private long a;
|
|
private long b;
|
|
|
|
public final long a() {
|
|
return this.b;
|
|
}
|
|
|
|
public final void a(long j) {
|
|
this.b = j;
|
|
}
|
|
|
|
public final long b() {
|
|
return this.a;
|
|
}
|
|
|
|
public final void b(long j) {
|
|
this.a = j;
|
|
}
|
|
}
|
|
|
|
public interface c {
|
|
mt a(b bVar);
|
|
}
|
|
|
|
public static final class d implements c {
|
|
@Override // com.ironsource.mt.c
|
|
public mt a(b timerConfig) {
|
|
Intrinsics.checkNotNullParameter(timerConfig, "timerConfig");
|
|
return new e(new ot(timerConfig.b()));
|
|
}
|
|
}
|
|
|
|
public static final class e implements mt {
|
|
private final ot a;
|
|
|
|
public static final class a implements ot.a {
|
|
final /* synthetic */ a a;
|
|
|
|
public a(a aVar) {
|
|
this.a = aVar;
|
|
}
|
|
|
|
@Override // com.ironsource.ot.a
|
|
public void a() {
|
|
this.a.a();
|
|
}
|
|
}
|
|
|
|
public e(ot timer) {
|
|
Intrinsics.checkNotNullParameter(timer, "timer");
|
|
this.a = timer;
|
|
}
|
|
|
|
@Override // com.ironsource.mt
|
|
public void a(a callback) {
|
|
Intrinsics.checkNotNullParameter(callback, "callback");
|
|
this.a.a((ot.a) new a(callback));
|
|
}
|
|
|
|
@Override // com.ironsource.mt
|
|
public void cancel() {
|
|
this.a.e();
|
|
}
|
|
}
|
|
|
|
void a(a aVar);
|
|
|
|
void cancel();
|
|
}
|