https://github.com/colinbut/rxjava-samples
Reactive X - RxJava - Samples
https://github.com/colinbut/rxjava-samples
reactive reactive-programming reactive-stream reactive-streams reactivex
Last synced: about 1 year ago
JSON representation
Reactive X - RxJava - Samples
- Host: GitHub
- URL: https://github.com/colinbut/rxjava-samples
- Owner: colinbut
- Created: 2016-10-29T14:47:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-19T20:18:58.000Z (over 9 years ago)
- Last Synced: 2025-02-01T14:46:10.256Z (over 1 year ago)
- Topics: reactive, reactive-programming, reactive-stream, reactive-streams, reactivex
- Language: Java
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reactive X - RxJava - Samples
This repository consists of samples on how to utilise RxJava to do reactive programming in Java.
The following simple topics to some advanced areas are covered:
### Creating Observables
- basic observable creation using `just`, `from`, `create`
- subscriptions using `subscribe` and `unsubscribe`
- Hot & Cold observables (`ConnectableObservables`, `Subjects`)
### Manipulation with Operators
#### Transformation
- `map`, `flatmap` etc...
#### Filtering
- `filter`, `skip`, `take`,
#### Accumalation
- `scan`
#### Combination
- `amb`, `combineLast`, `zip`, `merge`, `concat`
#### Conditionals
- `takeUntil`, `takeWhile`, `skipUntil`, `skipWhile`
#### Tackle errors
#### Concurrency and Parallelism