EventBus in Android

Updated 8 June 2018

Save

EventBus is an opensource library for android publish/subscribe event bus for loose coupling. EventBus enables central communication to decoupled classes with just a few lines of code simplifying the code.

Event Bus Features:

Add Dependency in your project build.gradle

Create Global instance of EventBus so we can create instance EventBus:

To Post data using Event Bus :

Register Event Bus in Activity onStart() method:

Unregister-Event Bus in Activity onStop() method:

To receive the post data we need to subscribe the MessageEvent:

@Subscribe annotation here specifies that the below function will execute taking the single parameter of type CustomEvent.

Event Bus is the very tiny library, it is so helpful to reduce boilerplate code and for creating a decoupled system.

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home