I have two observables each will return a list of objects. I would like to collect these list and then use the DiffUtil feature from Android to delete the non-existing items from the first list. Anyone have any ideas for this aside from firing another observable from the onComplete of the first observable? Or is this even possible?
Observable1 -> List1
Observable2 -> List2
DiffUtil(List1, List2)
delete from List1 items that are non-existent in List2