I am currently subscribed to a flowable method using RxJava2 Let's say that i have a method where i subscribe.
public Flowable<UploadStatus> getStatusChanges()
I will make the first call to load all of the items status from database, so basically will load all of the items on my recyclerview. But once im subscribe i will keep getting events from that flowable. I will get individual changes from a determined item, for instance a determined item changed.
How can i differ individual changes from the initial load?