- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
63 lines
2.1 KiB
Java
63 lines
2.1 KiB
Java
package com.digitalturbine.ignite.cl.aidl;
|
|
|
|
import android.os.Binder;
|
|
import android.os.IBinder;
|
|
import android.os.IInterface;
|
|
import android.os.Parcel;
|
|
import android.os.RemoteException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface IIgniteServiceCallback extends IInterface {
|
|
void onError(String str) throws RemoteException;
|
|
|
|
void onProgress(String str) throws RemoteException;
|
|
|
|
void onScheduled(String str) throws RemoteException;
|
|
|
|
void onStart(String str) throws RemoteException;
|
|
|
|
void onSuccess(String str) throws RemoteException;
|
|
|
|
public static abstract class Stub extends Binder implements IIgniteServiceCallback {
|
|
public Stub() {
|
|
attachInterface(this, "com.digitalturbine.ignite.cl.aidl.IIgniteServiceCallback");
|
|
}
|
|
|
|
@Override // android.os.IInterface
|
|
public IBinder asBinder() {
|
|
return this;
|
|
}
|
|
|
|
@Override // android.os.Binder
|
|
public boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
|
if (i >= 1 && i <= 16777215) {
|
|
parcel.enforceInterface("com.digitalturbine.ignite.cl.aidl.IIgniteServiceCallback");
|
|
}
|
|
if (i == 1598968902) {
|
|
parcel2.writeString("com.digitalturbine.ignite.cl.aidl.IIgniteServiceCallback");
|
|
return true;
|
|
}
|
|
if (i == 1) {
|
|
onScheduled(parcel.readString());
|
|
parcel2.writeNoException();
|
|
} else if (i == 2) {
|
|
onStart(parcel.readString());
|
|
parcel2.writeNoException();
|
|
} else if (i == 3) {
|
|
onProgress(parcel.readString());
|
|
parcel2.writeNoException();
|
|
} else if (i == 4) {
|
|
onSuccess(parcel.readString());
|
|
parcel2.writeNoException();
|
|
} else {
|
|
if (i != 5) {
|
|
return super.onTransact(i, parcel, parcel2, i2);
|
|
}
|
|
onError(parcel.readString());
|
|
parcel2.writeNoException();
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
}
|