Top "Greenrobot-eventbus" questions

EventBus is an Android optimized publish/subscribe event bus that simplifies communication between Activities, Fragments, Threads, Services, etc.

EventBus - Subscriber class and its super classes have no public methods with the @subscribe annotation

I'm creating an Android application using EventBus for posting asynchronous broadcasts to other classes, but I'm running into an error …

android event-bus greenrobot-eventbus
GreenRobot EventBus error in fragments: No subscribers registered for event class

I have an activity, its layout contains a FrameLayout. I use the framelayout as a fragment container. I replace the …

android android-fragments greenrobot-eventbus
Is using event library like Otto or EventBus a recommended way to handle relations between Activities, Fragments, and background threads

In most of the case, when dealing with case User thread (AsyncTask) to perform background processing Pass back calculated result …

android android-asynctask event-bus otto greenrobot-eventbus
GreenRobot EventBusException: Subscriber class already registered to event class

I have a MainActivity and a Service in my android app. I have registered both to the EventBus and when …

greenrobot-eventbus
Can I use greenrobot EventBus for Communication between Activity and Service?

EventBus Can I use this library for Activity to Service communication ? I have tried this in my app as follows: @…

android android-activity android-service greenrobot-eventbus
EventBus, register and registerSticky method

I use greenrobot EventBus library to send data between two fragments in my android app and I want to know …

android event-bus greenrobot-eventbus
Which Activity lifecycle methods are best to register/unregister to event bus?

What is the best place to register and unregister to an event bus (like otto, EventBus, or tinybus) in an …

android otto greenrobot-eventbus
Greenrobot EventBus Could Not Dispatch Event

I am using EventBus to communicate from a long running thread to Fragments that update their UI. This long running …

java android multithreading android-fragments greenrobot-eventbus
EventBus Not on the main thread

I'm trying to get the positions from my WS and update my markers in my GoogleMap fragment so what I'm …

android google-maps android-fragments greenrobot-eventbus
Threading events using GreenRobot EventBus

I've just started looking at GreenRobot's EventBus for Android and have a question about threading. I have a long-running process …

android greenrobot-eventbus