Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

An EventBus framework for Android [closed]

Tags:

android

events

Can anybody recommend a good framework for handling events in Android? These would be business logic events like UserUpdatedEvent. I am looking for something similar to the EventBus provided by GWT-EVENT but for a JVM that supports weak-references.

like image 796
benstpierre Avatar asked Mar 13 '10 02:03

benstpierre


1 Answers

You can give guava EventBus a try - it seems to work fine and has a very clean interface.

like image 154
Paweł Obrok Avatar answered Oct 06 '22 07:10

Paweł Obrok