RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences
2
votes
1answer
118 views
Using a Subject to trigger a music list to reload
In my Android app I have a Service that is periodically polling a server for a music playlist XML. For certain occasions I also want to trigger a reload manually.
I am using Retrofit for the server ...
1
vote
0answers
28 views
Using combinations of OR and AND filters with RxJava
I'm trying to work out a way to create a combination of OR and AND filters in RxJava. Here's what I've done so far:
...