4 ms·
I'm curious — how does this deal with errors in async calls? RxJava has error handling built in with `onError` functions.
by landakram 13y ago
I'm curious — how does this deal with errors in async calls? RxJava has error handling built in with `onError` functions.
- pettermahlen 13y agoTrickle has a similar concept - you can add a 'fallback' to a node: https://github.com/spotify/trickle/blob/master/src/examples/java/com/spotify/trickle/example/Examples.java#L155 https://github.com/spotify/trickle/blob/master/src/examples/...