##RxJava Koans
The Koans walk you along the path to Rx enlightenment in order to learn RxJava. The goal is to learn the functional reactive programming approach and how to work with RxJava to solve common problems.
The koans are broken out into subjects by file. Each koan file builds up your knowledge of rx-java and builds upon itself. It will stop at the first place you need to correct.
Some koans simply need to have the correct answer substituted for an incorrect one. Some, however, require you to supply your own answer. If you see the method __ (a double underscore) listed, it is a hint to you to supply your own code in order to make it work correctly. Your task is to make each test pass!
- Java 8 is needed for the exercise. Download from here if you don't have it already.
- download IntelliJ Community Edition
git clone git@github.com:mutexkid/rxjava-koans.git- Open the project in IntelliJ. If libraries are missing, follow the [instructions here].(https://www.jetbrains.com/idea/help/synchronizing-changes-in-gradle-project-and-intellij-idea-project.html)
- run the test suite by right clicking on
src/test/javaand selectingRun 'All Tests'. - The test suite will fail - make each test pass!
For more information about Functional Reactive Programming with RxJava, check out my article on the topic.
This project began its life as a direct port of https://github.com/mattpodwysocki/RxJSKoans. It aspires to add more rx-java specific challenges. Pull requests and feedback accepted!