We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sendEvents should use sendThreadPool instead of the default ForkJoinPool.
sendThreadPool
ForkJoinPool
sendEvents uses the default ForkJoinPool via CompletableFuture.supplyAsync(runnable) which scales with the number of cpu.
CompletableFuture.supplyAsync(runnable)
See #107
The text was updated successfully, but these errors were encountered:
cc: @izaaz
Sorry, something went wrong.
@kevink-sq this should be released now. Thank you for making the change in the repo and testing this out!
No branches or pull requests
Expected Behavior
sendEvents should use
sendThreadPool
instead of the defaultForkJoinPool
.Current Behavior
sendEvents uses the default
ForkJoinPool
viaCompletableFuture.supplyAsync(runnable)
which scales with the number of cpu.Possible Solution
See #107
The text was updated successfully, but these errors were encountered: