Book Image

Learning RxJava - Second Edition

By : Nick Samoylov, Thomas Nield
Book Image

Learning RxJava - Second Edition

By: Nick Samoylov, Thomas Nield

Overview of this book

RxJava is not just a popular library for building asynchronous and event-based applications; it also enables you to create a cleaner and more readable code base. In this book, you’ll cover the core fundamentals of reactive programming and learn how to design and implement reactive libraries and applications. Learning RxJava will help you understand how reactive programming works and guide you in writing your first example in reactive code. You’ll get to grips with the workings of Observable and Subscriber, and see how they are used in different contexts using real-world use cases. The book will also take you through multicasting and caching to help prevent redundant work with multiple Observers. You’ll then learn how to create your own RxJava operators by reusing reactive logic. As you advance, you’ll explore effective tools and libraries to test and debug RxJava code. Finally, you’ll delve into RxAndroid extensions and use Kotlin features to streamline your Android apps. By the end of this book, you'll become proficient in writing reactive code in Java and Kotlin to build concurrent applications, including Android applications.
Table of Contents (22 chapters)
1
Section 1: Foundations of Reactive Programming in Java
5
Section 2: Reactive Operators
12
Section 3: Integration of RxJava applications
Appendix B: Functional Types
Appendix E: Understanding Schedulers

Understanding backpressure

Throughout this book, we emphasized the push-based nature of an Observable. Pushing items synchronously and one at a time from the source all the way to the Observer is indeed how an Observable chain of operators works by default without any concurrency.

For instance, the following demonstrates an Observable that emits the numbers from 1 through 999,999,999:

import io.reactivex.rxjava3.core.Observable;

public class Ch8_01 {
public static void main(String[] args) {
Observable.range(1, 999_999_999)
.map(MyItem::new)
.subscribe(myItem -> {
sleep(50);
System.out.println("Received MyItem " + myItem.id);
});
}
}

It maps each integer to a MyItem instance, which simply holds it as a property:

     static final class MyItem {
final int id;
MyItem...