<Kotlin Concurrency againts Goroutine, Task, Compl...
# stackoverflow
u
Kotlin Concurrency againts Goroutine, Task, CompletableFuture People always show the same example when I read articles about concurrency in kotlin coroutine or golang goroutine. Create 100_000 Threads in Java or C#, ooopps Stackoverflow. Yes. but anyone Who uses directly Thread classes in Java or C#? In java and C#, There are thread pools for CompletableFuture and Task. When We try to create 100_000 Task or CompletableFuture, We can do that easily with ExecuterService/ForkJoinPool or dotnet DefaultThread Pool. They will reuse the threads. If there is no...