You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The wiki home page (and the original techblog posting) uses a simple set of five remote calls to illustrate the problems with java futures (https://gist.github.com/benjchristensen/4671081) and java callbacks (https://gist.github.com/benjchristensen/4677544). However, there is no equivalent example which uses rxjava to solve the same problem - the documentation merely asserts that rx allows for more efficient execution and composition. Some sample code which addresses the same task as the futures and callbacks examples would be incredibly useful; as evidence that rxjava really is more composable, and as a simple guide to converting code that currently is implemented via callbacks or futures.