Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Froussios/Intro-To-RxJava

An extensive tutorial on RxJava
https://github.com/Froussios/Intro-To-RxJava

Last synced: 13 days ago
JSON representation

An extensive tutorial on RxJava

Awesome Lists containing this project

README

        

# Intro to RxJava

This guide aims to introduce a beginner reactive programmer to the complete power of the [RxJava](https://github.com/ReactiveX/RxJava) implementation of reactive programming for the JVM. It is based on the [IntroToRx](http://www.introtorx.com) guide for Rx.NET.

No experience with either reactive or functional programming is needed to follow the book. Familiarity with the basics of Java is required.

[Begin learning](/Part%201%20-%20Getting%20Started/1.%20Why%20Rx.md)

### Structure

The content of this book is meant to be read from start to finish. It is bigger than your average tutorial and smaller than an actual book. It begins with the basics and every subsequent chapter introduces increasingly advanced features and concepts. Sections of the book are intended to be self-containing and to-the-point, so that the book can be referred back to by non-beginners.

The examples used in the book are also [available in compilable java files](/tests/java/itrx) in two formats:
* Examples that print to standard output (recommended for first-time readers)
* Silent, self-checking examples in the form of [JUnit](http://junit.org/) tests.
The readers are invited to study whichever style suits them best.