Difference between revisions of "Vert.x"
Jump to navigation
Jump to search
(→RxJava) |
|||
Line 29: | Line 29: | ||
* http://akarnokd.blogspot.com/2016/03/operator-fusion-part-1.html | * http://akarnokd.blogspot.com/2016/03/operator-fusion-part-1.html | ||
* https://www.littlerobots.nl/blog/Note-to-self-RxJava-SyncOnSubscribe/ | * https://www.littlerobots.nl/blog/Note-to-self-RxJava-SyncOnSubscribe/ | ||
+ | == Version 1 to Version 2 == | ||
+ | * https://blog.kaush.co/2017/06/21/rxjava1-rxjava2-migration-understanding-changes/ | ||
= Shared Data = | = Shared Data = |
Revision as of 09:45, 2 March 2020
Click here to comment see Self Driving RC Car
Documentation
- https://vertx.io/vertx2/core_manual_java.html
- https://vertx.io/docs/guide-for-java-devs/guide-for-java-devs.pdf
The Golden Rule
https://vertx.io/docs/vertx-core/java/#golden_rule
Python
https://vertx.io/vertx2/core_manual_python.html#accessing-the-vertx-api
TCP Eventbus Bridge
Metrics
https://vertx.io/docs/vertx-dropwizard-metrics/java/
Links
RxJava
- https://vertx.io/docs/vertx-rx/java/
- https://github.com/ReactiveX/RxJava/wiki/How-To-Use-RxJava
- http://reactivex.io/RxJava/javadoc/io/reactivex/Observable.html
- https://github.com/ReactiveX/RxJava/wiki/Backpressure
- Not so obvious things about rxjava
- https://github.com/ReactiveX/RxJava/wiki/Creating-Observables
- http://akarnokd.blogspot.com/2016/03/operator-fusion-part-1.html
- https://www.littlerobots.nl/blog/Note-to-self-RxJava-SyncOnSubscribe/