Created
March 14, 2021 12:02
-
-
Save isopropylcyanide/09c46e914287e7291b4164f49e45927a to your computer and use it in GitHub Desktop.
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
public List<PaymentMethods> getTopKPaymentMethodDetails(List<Integer> paymentIds, int k) { | |
try { | |
return concurrentWorkExecutor.splitJoin(k, | |
paymentIds, | |
paymentService::fetch, | |
Collectors.toList()); | |
} catch (Exception ex) { | |
log.error("Error processing top K payment methods", ex); | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment