
Github Link : https://github.com/CODINGSAINT/rxJava-tutorial
Learn to build an observable from scratch in RxJava 2 using create, emit shapes (square, hexagon, pentagon, star) with colors, and manage on next, on error, and on complete.
Explore observable using timer in RxJava 2 to emit a single event after a delay, compare with interval, and subscribe with on next and on complete.
Explore the debounce operator in RxJava 2, which emits items only after a period of user inactivity, illustrated by typing in a search box and waiting for results.
The filter operator in RxJava 2 filters a stream based on a condition, passing only items that meet it, such as colors blue or green, while others are ignored.
Explore the RxJava 2 zip operator, which combines multiple streams with a defined function and emits joined results as events align, illustrated with a marble diagram.
Reactive is not new in Software Engineering. Within few years, we have seen increase in reactive solutions at a large scale. Let us look what reactive programming actually means.
Reactive programming is a paradigm which enables to program for streams of data in non blocking (asynchronous) manner. It makes the solutions such that the system reacts to the stream of events.
This course is about Reactive Programming using Java. It will be helpful to you to learn further reactive programming using Java frameworks like Reactive Spring and others.
This course can be used for learning basic paradigm of reactive programming
In this course we will cover
Reactive Programming Paradigm using Java Framework
Reactive Paradigm and Reactive Manifesto
Reactive Observable
Backpressure and Flowables
Using Different Type of Operators
Operators for filtering observables
Operator for transforming observables
Operator for combining observables
Utility Operators on observables
Conditional Operator on observables