We are switching project from javaRx 1.x to javaRx 2.x. i cant really understand:
- Why i should keep Observable in my project instead of using Flowable everywhere.
- If i know the place there is no any back pressure do i need to use Flowable with no back pressure setup (default, ON_OVERFLOW_ERROR) does it make difference with new javaRx 2.x Observable in term of memory, processor time use?
- Will i have more potential errors if i keep Observable?
Here we have some explications: What is the difference between Observable and Flowable in RxJava 2.0?
What is the difference if i use everywhere Flowable?