-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.x: Update _Sidebar.md with new order of topics (#6133)
- Loading branch information
Showing
2 changed files
with
57 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
* [[Getting Started]] | ||
* [[How To Use RxJava]] | ||
* [[Additional Reading]] | ||
* [[Observable]] | ||
* [[Creating Observables]] | ||
* [[Transforming Observables]] | ||
* [[Filtering Observables]] | ||
* [[Combining Observables]] | ||
* [[Error Handling Operators]] | ||
* [[Observable Utility Operators]] | ||
* [[Conditional and Boolean Operators]] | ||
* [[Mathematical and Aggregate Operators]] | ||
* [[Async Operators]] | ||
* [[Connectable Observable Operators]] | ||
* [[Blocking Observable Operators]] | ||
* [[String Observables]] | ||
* [[Alphabetical List of Observable Operators]] | ||
* [[Implementing Your Own Operators]] | ||
* [[Subject]] | ||
* [[Scheduler]] | ||
* [[Plugins]] | ||
* [[Backpressure]] | ||
* [[Error Handling]] | ||
* [[The RxJava Android Module]] | ||
* [[How to Contribute]] | ||
* [Javadoc](http://reactivex.io/RxJava/javadoc/rx/Observable.html) | ||
* [Introduction](https://github.com/ReactiveX/RxJava/wiki/Home) | ||
* [Getting Started](https://github.com/ReactiveX/RxJava/wiki/Getting-Started) | ||
* [How to Use RxJava](https://github.com/ReactiveX/RxJava/wiki/How-To-Use-RxJava) | ||
* [Reactive Streams](https://github.com/ReactiveX/RxJava/wiki/Reactive-Streams) | ||
* [The reactive types of RxJava](https://github.com/ReactiveX/RxJava/wiki/Observable) | ||
* [Schedulers](https://github.com/ReactiveX/RxJava/wiki/Scheduler) | ||
* [Subjects](https://github.com/ReactiveX/RxJava/wiki/Subject) | ||
* [Error Handling](https://github.com/ReactiveX/RxJava/wiki/Error-Handling) | ||
* [Operators (Alphabetical List)](https://github.com/ReactiveX/RxJava/wiki/Alphabetical-List-of-Observable-Operators) | ||
* [Async](https://github.com/ReactiveX/RxJava/wiki/Async-Operators) | ||
* [Blocking](https://github.com/ReactiveX/RxJava/wiki/Blocking-Observable-Operators) | ||
* [Combining](https://github.com/ReactiveX/RxJava/wiki/Combining-Observables) | ||
* [Conditional & Boolean](https://github.com/ReactiveX/RxJava/wiki/Conditional-and-Boolean-Operators) | ||
* [Connectable](https://github.com/ReactiveX/RxJava/wiki/Connectable-Observable-Operators) | ||
* [Creation](https://github.com/ReactiveX/RxJava/wiki/Creating-Observables) | ||
* [Error management](https://github.com/ReactiveX/RxJava/wiki/Error-Handling-Operators) | ||
* [Filtering](https://github.com/ReactiveX/RxJava/wiki/Filtering-Observables) | ||
* [Mathematical and Aggregate](https://github.com/ReactiveX/RxJava/wiki/Mathematical-and-Aggregate-Operators) | ||
* [Parallel flows](https://github.com/ReactiveX/RxJava/wiki/Parallel-flows) | ||
* [String](https://github.com/ReactiveX/RxJava/wiki/String-Observables) | ||
* [Transformation](https://github.com/ReactiveX/RxJava/wiki/Transforming-Observables) | ||
* [Utility](https://github.com/ReactiveX/RxJava/wiki/Observable-Utility-Operators) | ||
* [Notable 3rd party Operators (Alphabetical List)](https://github.com/ReactiveX/RxJava/wiki/Alphabetical-List-of-3rd-party-Operators) | ||
* [Plugins](https://github.com/ReactiveX/RxJava/wiki/Plugins) | ||
* [How to Contribute](https://github.com/ReactiveX/RxJava/wiki/How-to-Contribute) | ||
* [Writing operators](https://github.com/ReactiveX/RxJava/wiki/Writing-operators-for-2.0) | ||
* [Backpressure](https://github.com/ReactiveX/RxJava/wiki/Backpressure-(2.0)) | ||
* [another explanation](https://github.com/ReactiveX/RxJava/wiki/Backpressure) | ||
* [JavaDoc](http://reactivex.io/RxJava/2.x/javadoc) | ||
* [Coming from RxJava 1](https://github.com/ReactiveX/RxJava/wiki/What's-different-in-2.0) | ||
* [Additional Reading](https://github.com/ReactiveX/RxJava/wiki/Additional-Reading) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,31 @@ | ||
* [Introduction](https://github.com/ReactiveX/RxJava/wiki/Home) | ||
* [Getting Started](https://github.com/ReactiveX/RxJava/wiki/Getting-Started) | ||
* [JavaDoc](http://reactivex.io/RxJava/javadoc) | ||
* [1.x](http://reactivex.io/RxJava/1.x/javadoc/rx/Observable.html) | ||
* [2.x](http://reactivex.io/RxJava/2.x/javadoc/io/reactivex/Flowable.html) | ||
* [How to Use RxJava](https://github.com/ReactiveX/RxJava/wiki/How-To-Use-RxJava) | ||
* [Additional Reading](https://github.com/ReactiveX/RxJava/wiki/Additional-Reading) | ||
* [The Observable](https://github.com/ReactiveX/RxJava/wiki/Observable) | ||
* Operators [(Alphabetical List)](http://reactivex.io/documentation/operators.html#alphabetical) | ||
* [Async](https://github.com/ReactiveX/RxJava/wiki/Async-Operators) | ||
* [Blocking Observable](https://github.com/ReactiveX/RxJava/wiki/Blocking-Observable-Operators) | ||
* [Combining](https://github.com/ReactiveX/RxJava/wiki/Combining-Observables) | ||
* [Conditional & Boolean](https://github.com/ReactiveX/RxJava/wiki/Conditional-and-Boolean-Operators) | ||
* [Connectable Observable](https://github.com/ReactiveX/RxJava/wiki/Connectable-Observable-Operators) | ||
* [Error Handling Operators](https://github.com/ReactiveX/RxJava/wiki/Error-Handling-Operators) | ||
* [Filtering](https://github.com/ReactiveX/RxJava/wiki/Filtering-Observables) | ||
* [Mathematical and Aggregate](https://github.com/ReactiveX/RxJava/wiki/Mathematical-and-Aggregate-Operators) | ||
* [Observable Creation](https://github.com/ReactiveX/RxJava/wiki/Creating-Observables) | ||
* [Parallel flows](https://github.com/ReactiveX/RxJava/wiki/Parallel-flows) | ||
* [String](https://github.com/ReactiveX/RxJava/wiki/String-Observables) | ||
* [Transformational](https://github.com/ReactiveX/RxJava/wiki/Transforming-Observables) | ||
* [Utility Operators](https://github.com/ReactiveX/RxJava/wiki/Observable-Utility-Operators) | ||
* [Implementing Custom Operators](https://github.com/ReactiveX/RxJava/wiki/Implementing-custom-operators-(draft)), [previous](https://github.com/ReactiveX/RxJava/wiki/Implementing-Your-Own-Operators) | ||
* [Backpressure](https://github.com/ReactiveX/RxJava/wiki/Backpressure) | ||
* [Error Handling](https://github.com/ReactiveX/RxJava/wiki/Error-Handling) | ||
* [Plugins](https://github.com/ReactiveX/RxJava/wiki/Plugins) | ||
* [Reactive Streams](https://github.com/ReactiveX/RxJava/wiki/Reactive-Streams) | ||
* [The reactive types of RxJava](https://github.com/ReactiveX/RxJava/wiki/Observable) | ||
* [Schedulers](https://github.com/ReactiveX/RxJava/wiki/Scheduler) | ||
* [Subjects](https://github.com/ReactiveX/RxJava/wiki/Subject) | ||
* [The RxJava Android Module](https://github.com/ReactiveX/RxAndroid/wiki) | ||
* RxJava 2.0 | ||
* [Reactive Streams](https://github.com/ReactiveX/RxJava/wiki/Reactive-Streams) | ||
* [What's different](https://github.com/ReactiveX/RxJava/wiki/What's-different-in-2.0) | ||
* [Writing operators](https://github.com/ReactiveX/RxJava/wiki/Writing-operators-for-2.0) | ||
* [Backpressure](https://github.com/ReactiveX/RxJava/wiki/Backpressure-(2.0)) | ||
* [How to Contribute](https://github.com/ReactiveX/RxJava/wiki/How-to-Contribute) | ||
* [Error Handling](https://github.com/ReactiveX/RxJava/wiki/Error-Handling) | ||
* [Operators (Alphabetical List)](https://github.com/ReactiveX/RxJava/wiki/Alphabetical-List-of-Observable-Operators) | ||
* [Async](https://github.com/ReactiveX/RxJava/wiki/Async-Operators) | ||
* [Blocking](https://github.com/ReactiveX/RxJava/wiki/Blocking-Observable-Operators) | ||
* [Combining](https://github.com/ReactiveX/RxJava/wiki/Combining-Observables) | ||
* [Conditional & Boolean](https://github.com/ReactiveX/RxJava/wiki/Conditional-and-Boolean-Operators) | ||
* [Connectable](https://github.com/ReactiveX/RxJava/wiki/Connectable-Observable-Operators) | ||
* [Creation](https://github.com/ReactiveX/RxJava/wiki/Creating-Observables) | ||
* [Error management](https://github.com/ReactiveX/RxJava/wiki/Error-Handling-Operators) | ||
* [Filtering](https://github.com/ReactiveX/RxJava/wiki/Filtering-Observables) | ||
* [Mathematical and Aggregate](https://github.com/ReactiveX/RxJava/wiki/Mathematical-and-Aggregate-Operators) | ||
* [Parallel flows](https://github.com/ReactiveX/RxJava/wiki/Parallel-flows) | ||
* [String](https://github.com/ReactiveX/RxJava/wiki/String-Observables) | ||
* [Transformation](https://github.com/ReactiveX/RxJava/wiki/Transforming-Observables) | ||
* [Utility](https://github.com/ReactiveX/RxJava/wiki/Observable-Utility-Operators) | ||
* [Notable 3rd party Operators (Alphabetical List)](https://github.com/ReactiveX/RxJava/wiki/Alphabetical-List-of-3rd-party-Operators) | ||
* [Plugins](https://github.com/ReactiveX/RxJava/wiki/Plugins) | ||
* [How to Contribute](https://github.com/ReactiveX/RxJava/wiki/How-to-Contribute) | ||
* [Writing operators](https://github.com/ReactiveX/RxJava/wiki/Writing-operators-for-2.0) | ||
* [Backpressure](https://github.com/ReactiveX/RxJava/wiki/Backpressure-(2.0)) | ||
* [another explanation](https://github.com/ReactiveX/RxJava/wiki/Backpressure) | ||
* [JavaDoc](http://reactivex.io/RxJava/2.x/javadoc) | ||
* [Coming from RxJava 1](https://github.com/ReactiveX/RxJava/wiki/What's-different-in-2.0) | ||
* [Additional Reading](https://github.com/ReactiveX/RxJava/wiki/Additional-Reading) |