Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/Froussios/Intro-To-RxJava
- Owner: Froussios
- Created: 2015-03-27T14:08:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-03-16T15:52:51.000Z (over 2 years ago)
- Last Synced: 2024-05-03T00:52:42.900Z (6 months ago)
- Language: Java
- Homepage:
- Size: 469 KB
- Stars: 2,048
- Watchers: 98
- Forks: 399
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-rxjava - Intro-To-RxJava - An extensive tutorial on RxJava. (Guides)
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.