
Explore reactive programming in Java using RxJava 3.x, covering observer design pattern, reactive streams, back pressure, and core concepts for responsive, resilient applications.
Expose the contrast between sync and async execution, explain asynchrony via concurrency, and show how callbacks become hard with many events, while RxJava simplifies concurrency and completion signals.
Explore callbacks in asynchronous programming with a simple thread example, highlighting callback hell and how rx java and the observer pattern simplify callback management.
Explore how the observer design pattern in RxJava builds one-to-many dependencies where a subject notifies registered observers of state changes, with subscribe, unsubscribe, and update actions in a library example.
Compare observable and observer concepts in RxJava 3.x, showing push-based data flow and the subscribe lifecycle with onNext, onComplete, and onError events.
Learn how connectable observables convert a cold observable into a hot multi-cast stream, so multiple subscribers receive emissions simultaneously, with late subscribers starting from current emission, illustrated using interval.
Explore rxjava's merge and concat for combining emissions from multiple observables; merge interleaves outputs while concat preserves order, with overloads for two to four sources and interval-based demos.
Compare zip and combine latest in rxjava, showing how zip pairs emissions from two observables using a zipper function, while combine latest merges on the latest emissions from each source.
Group by groups employees by a rating key into grouped observables, then convert each group to a map of rating to names using flatMap and a multi-map collector.
Explore how to combine observable emissions in RxJava 3.x using merge, concat, flatMap, concatMap, amb, zip, combineLatest, and groupBy.
Explore the five RxJava subject implementations - publish, replay, behavior, async, and unicast - showing how each emits data at subscription, caches items, or releases the last value after completion.
Explore RxJava 3.x reactive concepts: replay and cache operators, connectable vs observable, and subjects including publish, behavior, replay, async, and unicast, with multicast and emission management, ahead of concurrency topics.
Explore how to inject concurrency into RxJava programs by using threads and runnables, while preserving the observable contract and learning how schedulers enable asynchronous task execution.
ObserveOn switches to a different scheduler in the chain, affecting downstream while upstream remains unchanged. It can cause a producer-consumer gap, prompting the use of flowable and back pressure.
Learn how to create a flowable with a back pressure strategy in RxJava 3.x, exploring buffer, drop, latest, error, and missing, and why backpressure matters.
Welcome to our brand New Course! Reactive programming in Java using RxJava 3.x.
This is a course where you will get to learn about an entirely new paradigm of programming "Reactive".
In the Modern age of applications where things are getting developed rapidly, We come across a lot of applications being launched almost every week.
This has become very difficult for businesses and application developers to make their applications stand out.
There are few things that developers need to think about even before starting the development and choosing the right architecture for their upcoming applications!
How the application will remain responsive even in case of extreme load?
How they will make the System more resilient - Even in case of error system should behave sensibly?
How they will make use of the resources in the most efficient manner?
How they will cope up with the increasing load.. or you may say elastic?
Reactive programming may be the answer to that.
Reactive programming and libraries like RxJava, Reactor are built and designed to keep all these things in mind.
In this course, we will understand Reactive Programming fundamentals and RxJava and its capability in deep.
And the best thing about this course is that our main focus will be the core concepts of RxJava.
RxJava comes with a lot of tools but before understanding and getting deep into them -
In the first section of the course, we will understand some fundamentals to make our learning of RxJava more sensible and easy to learn in upcoming sections!
Reactive Manifesto
Sync Vs Async
Call Backs and Call BackHelll
Push Vs Pull
Concurrent Vs Parallel
Observer Design pattern
Then the power of RxJava will start. We have a lot to cover in Deep
Observable and Observers
Operators
Combining Observables
Replaying Caching and Subjects
Concurrency and Parallelism
Buffering Throttling and Switching
Flowable and BackPressure Implementation of Java reactive streams
This Course also comes with two Bonus Sections of Java Streams.
I strongly believe after completing this course you will have a SOLID foundation of Reactive programming concepts and RxJAVA.
I welcome you again! and Wish you all the BEST !
Happy Learning
Basics>Strong;