Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isopropylcyanide/bee41ba7abf2fd13811360c060e6193f to your computer and use it in GitHub Desktop.
Save isopropylcyanide/bee41ba7abf2fd13811360c060e6193f to your computer and use it in GitHub Desktop.
public List<Integer> processExpensiveFunctionElegant(List<Integer> inputs, int firstK) {
try {
return concurrentWorkExecutor.splitJoin(firstK,
inputs,
mathService::process,
Collectors.toList());
} catch (Exception ex) {
log.error("Error processing expensive function ", ex);
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment