Avatar
0
monkey Enlightened
monkey Enlightened
EzyFox Server: Lấy danh sách user của tất cả các App khi xử lý request từ 1 app bất kỳ
EzyFox Server: Lấy danh sách user của tất cả các App khi xử lý request từ 1 app bất kỳ
  • Answer
ezyfox-server
Remain: 5
1 Answer
Avatar
monkey Enlightened
monkey Enlightened
Em có thể sử dụng cách này:

@EzyDoHandle(Commands.CHAT_ALL)
public void chatAll(
    EzyAppContext context,
    EzyUser user,
    ChatRequest request
) {
    EzyZoneContext zoneContext = context.getParent();
    for (EzyAppContext appContext : zoneContext.getAppContexts()) {
        EzyAppUserManager userManager = appContext.getApp().getUserManager();
        // làm gì đó với userManager
    }
}
  • 0
  • Reply