From 21184aeed30bc59eb9b9d421fff43bc9f2f29235 Mon Sep 17 00:00:00 2001 From: Josef Raska <6277721+jraska@users.noreply.github.com> Date: Wed, 2 Oct 2019 17:13:20 +0200 Subject: [PATCH] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e01deb..4d121b7 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,11 @@ The advanced codelab will take you more into deep of reactive world, we will go - Backpressure - Observable vs. Flowable - Other reactive libraries interoperability - +## How to use the Code Lab +- There are tasks for different areas formed as unit tests and having a format `Task{Order}{AreaOfFocus}` (e.g. `Task2Transformations`). +- Each of these tasks has a method with a `TODO` explaining what to do and giving hint which operator might be useful. Very often there are multiple solutions to given problem. +- Each Task has a solution with format `SolutionTask{Order}{AreaOfFocus}` (e.g. `SolutionTask2Transformations`). +- Recommended order is doing the tasks by order of their numbers, however jumping based on area of interest is encouraged as well. ## Links - ReactiveX http://reactivex.io/intro.html I consider understanding the intro part the most essential thing to understand Rx.