- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
56 lines
2.1 KiB
Java
56 lines
2.1 KiB
Java
package com.ironsource;
|
|
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
import com.unity3d.ironsourceads.interstitial.InterstitialAd;
|
|
import com.unity3d.ironsourceads.interstitial.InterstitialAdLoaderListener;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class th implements p0<InterstitialAd> {
|
|
private final jt a;
|
|
private final InterstitialAdLoaderListener b;
|
|
|
|
public th(jt threadManager, InterstitialAdLoaderListener publisherListener) {
|
|
Intrinsics.checkNotNullParameter(threadManager, "threadManager");
|
|
Intrinsics.checkNotNullParameter(publisherListener, "publisherListener");
|
|
this.a = threadManager;
|
|
this.b = publisherListener;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public static final void a(th this$0, IronSourceError error) {
|
|
Intrinsics.checkNotNullParameter(this$0, "this$0");
|
|
Intrinsics.checkNotNullParameter(error, "$error");
|
|
this$0.b.onInterstitialAdLoadFailed(error);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public static final void a(th this$0, InterstitialAd adObject) {
|
|
Intrinsics.checkNotNullParameter(this$0, "this$0");
|
|
Intrinsics.checkNotNullParameter(adObject, "$adObject");
|
|
this$0.b.onInterstitialAdLoaded(adObject);
|
|
}
|
|
|
|
@Override // com.ironsource.p0
|
|
public void a(final InterstitialAd adObject) {
|
|
Intrinsics.checkNotNullParameter(adObject, "adObject");
|
|
this.a.a(new Runnable() { // from class: com.ironsource.th$$ExternalSyntheticLambda1
|
|
@Override // java.lang.Runnable
|
|
public final void run() {
|
|
th.a(th.this, adObject);
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override // com.ironsource.p0
|
|
public void onAdLoadFailed(final IronSourceError error) {
|
|
Intrinsics.checkNotNullParameter(error, "error");
|
|
this.a.a(new Runnable() { // from class: com.ironsource.th$$ExternalSyntheticLambda0
|
|
@Override // java.lang.Runnable
|
|
public final void run() {
|
|
th.a(th.this, error);
|
|
}
|
|
});
|
|
}
|
|
}
|