I am using a RecyclerView
to show list of videos and on clicking any video the videoplayer starts the video and player has custom controls one which is next and previous and on clicking them RecyclerView gives the next or previous video. So here I am using EventBus for this communication between adapter and video player fragment.
Its works fine but I suspect there is a leakage in EventBus communication which for some heavy application may disrupt the flow.
Is there any alternative or a fix for such communication?