Again I´m comparing RxJava with Java 9 Flow. I see that Flow by default is asynchronously, and I was wondering if there´s a way to make it run synchronously.
Sometimes we just want to use it not for Nio but for sugar syntax, and have a more homogenous code.
In RxJava by default it´s synchronously, and you can make it run asynchronously using observerOn and subscribeOn in your pipeline.
There´s any operator in Flow to make it run in the main thread?.
Regards.