In my experience, `CompletableFuture` code doesn't...
# random
p
In my experience,
CompletableFuture
code doesn't look much more complicated than async/await at first sight, and LOC is only slightly higher (future-based code is very dense). However, async/await is way easier to write and maintain. Plus, with suspend functions it may be possible to further improve upon async/await.
👍 1