This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
1,433 additions
and
1,523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ abstract class ModuleHandler { | |
} | ||
} | ||
putExtra("__hash", callbackId) | ||
putExtra("__cmd", cmd) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
qqinterface/src/main/java/com/tencent/mobileqq/data/troop/TroopMemberNickInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package com.tencent.mobileqq.data.troop; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class TroopMemberNickInfo { | ||
@NotNull | ||
public final String getAutoRemark() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getColorNick() { | ||
return null; | ||
} | ||
|
||
public final int getColorNickId() { | ||
return 0; | ||
} | ||
|
||
@NotNull | ||
public final String getFriendNick() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getHBShowName() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getRemarkFromFriend() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getRemarkFromFriendV2() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getShowName() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getTroopNick() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getTroopUin() { | ||
return null; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
qqinterface/src/main/java/com/tencent/mobileqq/msf/sdk/MsfMessagePair.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.tencent.mobileqq.msf.sdk; | ||
|
||
import com.tencent.qphone.base.remote.FromServiceMsg; | ||
import com.tencent.qphone.base.remote.ToServiceMsg; | ||
|
||
public class MsfMessagePair { | ||
public FromServiceMsg fromServiceMsg; | ||
public String sendProcess; | ||
public ToServiceMsg toServiceMsg; | ||
|
||
public MsfMessagePair(String str, ToServiceMsg toServiceMsg, FromServiceMsg fromServiceMsg) { | ||
|
||
} | ||
|
||
public MsfMessagePair(ToServiceMsg toServiceMsg, FromServiceMsg fromServiceMsg) { | ||
|
||
} | ||
} |
75 changes: 75 additions & 0 deletions
75
qqinterface/src/main/java/com/tencent/qqnt/troopmemberlist/ITroopMemberListRepoApi.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
package com.tencent.qqnt.troopmemberlist; | ||
|
||
import androidx.lifecycle.LifecycleOwner; | ||
|
||
import com.tencent.mobileqq.data.troop.TroopMemberInfo; | ||
import com.tencent.mobileqq.data.troop.TroopMemberNickInfo; | ||
import com.tencent.mobileqq.qroute.QRouteApi; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import kotlin.Deprecated; | ||
import kotlin.Unit; | ||
import kotlin.jvm.functions.Function1; | ||
import kotlin.jvm.functions.Function2; | ||
|
||
public interface ITroopMemberListRepoApi extends QRouteApi { | ||
//void fetchGagTroopMemberInfo(@Nullable String str, @Nullable LifecycleOwner lifecycleOwner, boolean z, @NotNull String str2, @Nullable f fVar); | ||
|
||
//void fetchTroopMemberInfo(@Nullable String str, @Nullable String str2, boolean z, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str3, @Nullable g gVar); | ||
|
||
//void fetchTroopMemberInfoWithExtInfo(@Nullable String str, @Nullable String str2, boolean z, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str3, @Nullable g gVar); | ||
|
||
//void fetchTroopMemberList(@Nullable String str, @Nullable LifecycleOwner lifecycleOwner, boolean z, @NotNull String str2, @Nullable f fVar); | ||
|
||
//void fetchTroopMemberListWithExtInfo(@Nullable String str, @Nullable LifecycleOwner lifecycleOwner, boolean z, @NotNull String str2, @Nullable f fVar); | ||
|
||
|
||
|
||
void fetchTroopMemberName(@Nullable String str, @Nullable String str2, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str3, @Nullable Function1<? super TroopMemberNickInfo, Unit> cb); | ||
|
||
void fetchTroopMemberName(@Nullable String str, @Nullable String str2, @NotNull String str3, @Nullable Function1<? super TroopMemberNickInfo, Unit> cb); | ||
|
||
|
||
|
||
void fetchTroopMemberUid(@Nullable String str, @NotNull Function2<? super Boolean, ? super String, Unit> function2); | ||
|
||
void fetchTroopMemberUid(@NotNull List<String> list, @NotNull Function2<? super Boolean, ? super Map<String, String>, Unit> function2); | ||
|
||
void fetchTroopMemberUin(@Nullable String str, @NotNull Function2<? super Boolean, ? super String, Unit> function2); | ||
|
||
void fetchTroopMemberUin(@NotNull List<String> list, @NotNull Function2<? super Boolean, ? super Map<String, String>, Unit> function2); | ||
|
||
//void fetchTroopMemberUinListInfo(@Nullable String str, @Nullable List<String> list, boolean z, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str2, @Nullable f fVar); | ||
|
||
//void fetchTroopMemberUinListInfoWithExtInfo(@Nullable String str, @Nullable List<String> list, boolean z, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str2, @Nullable f fVar); | ||
|
||
//@Nullable | ||
//TroopMemberInfo getTroopMemberFromCacheOrFetchAsync(@Nullable String str, @Nullable String str2, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str3, @Nullable g gVar); | ||
|
||
int getTroopMemberInfoDBVersion(); | ||
|
||
@Deprecated(message = "兼容旧逻辑,过渡用,新逻辑不要使用") | ||
@Nullable | ||
TroopMemberInfo getTroopMemberInfoSync(@Nullable String groupId, @Nullable String userId, @Nullable LifecycleOwner lifecycleOwner, @NotNull String from); | ||
|
||
//@Deprecated(message = "兼容旧逻辑,过渡用,新逻辑不要使用") | ||
//@Nullable | ||
//TroopMemberInfo getTroopMemberInfoSync(@Nullable String str, @Nullable String str2, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str3, long j); | ||
|
||
//@Deprecated(message = "兼容旧逻辑,过渡用,新逻辑不要使用") | ||
//@Nullable | ||
//TroopMemberInfo getTroopMemberWithExtFromCacheOrFetchAsync(@Nullable String str, @Nullable String str2, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str3, @Nullable g gVar); | ||
|
||
//@Deprecated(message = "兼容旧逻辑,过渡用,新逻辑不要使用") | ||
//@Nullable | ||
//TroopMemberInfo getTroopMemberWithExtInfoSync(@Nullable String str, @Nullable String str2, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str3); | ||
|
||
boolean isTroopMemberInfoDBInited(@NotNull String str); | ||
|
||
//void preLoadTroopMemberUinListInfo(@Nullable String str, @Nullable List<String> list, boolean z, @Nullable LifecycleOwner lifecycleOwner, @NotNull String str2, @Nullable f fVar); | ||
} |
Oops, something went wrong.