Hi everyone. Do anyone know parallel sequence libr...
# coroutines
u
Hi everyone. Do anyone know parallel sequence library based on coroutines?
e
What is your use-case?
u
I have list of list of ints. And generate from every list of ints other list of objects. I want to launch all generation computation on parallel threads.
And then flatten the resulting list
Forgot to mention: I target Android so can't use Java 8 Stream Api
e
You still have ForkJoinPool in Android, don't you?
u
It looks little verbose, but I think it fits my use case. Thanks for response!