Skip to content

Instantly share code, notes, and snippets.

@bdargan
Last active August 29, 2015 14:07
Show Gist options
  • Save bdargan/31578f353a32e186537e to your computer and use it in GitHub Desktop.
Save bdargan/31578f353a32e186537e to your computer and use it in GitHub Desktop.
Rx ReactiveX References
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