Hi everyone. Do anyone know parallel sequence library based on coroutines?
e
elizarov
04/22/2017, 8:45 PM
What is your use-case?
u
umar
04/23/2017, 8:06 AM
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
elizarov
04/23/2017, 8:17 PM
You still have ForkJoinPool in Android, don't you?
u
umar
04/23/2017, 9:28 PM
It looks little verbose, but I think it fits my use case. Thanks for response!