-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.x: Update _Sidebar.md with new order of topics #6133
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
phew, gladly "Async" is alphabetically earlier than "Blocking"