コード例 #1
0
  @Override
  public List<CryptoCustomerCommunityInformation> getMoreDataAsync(
      FermatRefreshTypes refreshType, int pos) {
    List<CryptoCustomerCommunityInformation> dataSet = new ArrayList<>();

    try {
      offset = pos;
      List<CryptoCustomerCommunityInformation> result =
          moduleManager.listWorldCryptoCustomers(
              moduleManager.getSelectedActorIdentity(), location, distance, alias, MAX, offset);
      dataSet.addAll(result);
    } catch (Exception e) {
      e.printStackTrace();
    }

    return dataSet;
  }