Problem I just started learning reactive streams with RxJava. After reading a couple of books and a lot of articles […]
Tag: rx-java
Class for user actions
Problem I implemented a class for relationships with the user (deletion, name change, check for existence), I created this class […]
Finding the mean using RxJava
Problem I’m learning RxJava and this is what I attempted to find the mean of ‘n’ transactions. List<Transaction> transactions = […]
Getting products for category
Problem I have a PR for a bugfix in which the fix is just 4 characters. In this situation we […]
RXJava operate on exiting List instead of creating new
Problem I’m dipping my toes in to RXJava for the first time. The function below works just fine but I […]
Getting data with RxJava and retrofit
Problem I am using RxJava with retrofit to get data from an API then filtering the data with a for […]
Manager for OAuth2 tokens using RxJava
Problem I have a class in my application which manages storage of OAuth2 tokens. There are unauthenticated tokens (in my […]
Getting data with RxJava and retrofit
Problem I am using RxJava with retrofit to get data from an API then filtering the data with a for […]
Cache of shared observables (Rx)
Problem So the idea is to maintain a cache of shared Observables – accessible by a key – which if […]