https://github.com/cutta/eventbussample
Android eventBus library sample
https://github.com/cutta/eventbussample
android eventbus eventbus-library
Last synced: about 2 months ago
JSON representation
Android eventBus library sample
- Host: GitHub
- URL: https://github.com/cutta/eventbussample
- Owner: Cutta
- Created: 2015-12-17T19:00:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-01-21T11:14:12.000Z (over 6 years ago)
- Last Synced: 2025-06-03T05:36:07.420Z (about 1 year ago)
- Topics: android, eventbus, eventbus-library
- Language: Java
- Size: 117 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EventBusSample
Android eventBus library sample
This repo explain how to use EventBus library made by @greenrobot.
Building an Android app that has multiple active components communicating with each other can get tedious.
To save time, developers often end up with tightly coupled components in their apps.
EventBus is a popular open-source library that was created to solve this problem using the publisher/subscriber pattern.
Using the EventBus library, you can pass messages from one class to one or more classes in just a few lines of code.