I am using all Android architecture components in my project (Room DB, Live Data etc.) Currently, I am facing a problem that I have RecyclerView which should used loaded data from Room DB and display it with Paging library. The problem is that there is a multiple data classes which represents the items in newsfeed and are stored in Room and I need display them in that one recycler.
Is there any way how to easily solve it? Can I for example create some interface which would be used by all these classes?