Blocking use of CompletableFuture app-wide
Opened this issue · 0 comments
andras-adam commented
CompletableFuture.get()
blocks other processes, use non-blocking solution such as CompletableFuture.thenAccept()
with a callback instead.
Opened this issue · 0 comments
CompletableFuture.get()
blocks other processes, use non-blocking solution such as CompletableFuture.thenAccept()
with a callback instead.