#27 Rxjava - Do/Action Operators

preview_player
Показать описание
These are nothing but operators, but we call them "do" or "action" operators respectively.

⤵ Operators Covered
➡ doOnSubscribe
➡ doOnNext
➡ doOnComplete

You can find the source code of this video series here:

This video episode is a part of an ongoing RxJava tutorial series called RxJavaAllInOne.
👇🏾 You can find the playlist from here:

If you want to know more about doOnError watch
Previous Video 👇🏾
#26 Error Handling Operators - Retry - Part 2

Next Video 👇🏾
#28 RxJava - Operators - doFinally vs doOnDispose

Subscribe to this YouTube channel and hit that bell icon so you don't miss any notification regarding future RxJava tutorial videos that are going to be published every Sunday.

Microphone Used: Blue Snowball ICE
Check out the review here:

If you've any queries or questions you can find me here:

Рекомендации по теме
Комментарии
Автор

One more explanation for why modifying item in doOnNext() method didn't reflect in subscription, the reason is doOnNext accepts Consumer instance, and by definition, Consumer interface is : A functional interface (callback) that accepts a single value and doesn't emit anything, so doOnNext() is just observing the items being emitted and nothing else.

jainneeraj
Автор

Learnt lot of basics from All in one video series . Thanks for such a amazing playlist😊 . Looking for more content on other Observables like Single, Maybe and Completable .

PavanKumar-vhzx
Автор

Hi, Could you make a video on onErrorResumeNext, and if I don't need to break the loop from observable and have to add exceptions in a list, how can I write the code. Thanks in advance

vikrantkumar-vpry