Last active
August 29, 2015 14:07
-
-
Save bdargan/31578f353a32e186537e to your computer and use it in GitHub Desktop.
Rx ReactiveX References
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
The usual brief intro: | |
- https://gist.github.com/staltz/868e7e9bc2a7b8c1f754 | |
- | |
- https://github.com/ReactiveX/RxJava/wiki/Scheduler | |
slides | |
- http://www.slideshare.net/tkowalcz/33rd-degree-reactive-java | |
- http://abdullin.com/post/domain-driven-design-event-sourcing-rx-and-marble-diagrams/ | |
links, but haven't checked them | |
- http://docs.couchbase.com/prebuilt/java-sdk-2.0-beta/topics/observables.html | |
tips | |
For a small explanation: Observables are pushed to the receiver, while Enumerables are pulled by the receiver from the source, so you'd want an infinite Enumerable, and the consumer would simply stop pulling when it doesn't need any more items. | |
http://stackoverflow.com/questions/2521277/what-are-the-hot-and-cold-observables | |
http://stackoverflow.com/questions/tagged/reactive-programming?page=3&sort=votes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment