29 lines
583 B
Java
29 lines
583 B
Java
package com.huawei.hms.common.internal;
|
|
|
|
import com.huawei.hms.core.aidl.IMessageEntity;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface AnyClient {
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface CallBack {
|
|
void onCallback(IMessageEntity iMessageEntity, String str);
|
|
}
|
|
|
|
void connect(int i);
|
|
|
|
void connect(int i, boolean z);
|
|
|
|
void disconnect();
|
|
|
|
int getRequestHmsVersionCode();
|
|
|
|
String getSessionId();
|
|
|
|
boolean isConnected();
|
|
|
|
boolean isConnecting();
|
|
|
|
void post(IMessageEntity iMessageEntity, String str, CallBack callBack);
|
|
}
|