https://github.com/naxam/eventbus-android-binding
Xamarin Binding Library - Greenbot:EventBus
https://github.com/naxam/eventbus-android-binding
Last synced: about 1 year ago
JSON representation
Xamarin Binding Library - Greenbot:EventBus
- Host: GitHub
- URL: https://github.com/naxam/eventbus-android-binding
- Owner: NAXAM
- License: mit
- Created: 2017-06-22T07:15:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T07:16:11.000Z (almost 9 years ago)
- Last Synced: 2025-02-09T17:44:47.507Z (over 1 year ago)
- Language: C#
- Size: 91.8 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
EventBus - Xamarin Binding Library
========
EventBus is a publish/subscribe event bus optimized for Android.

EventBus...
* simplifies the communication between components
* decouples event senders and receivers
* performs well with Activities, Fragments, and background threads
* avoids complex and error-prone dependencies and life cycle issues
* makes your code simpler
* is fast
* is tiny (~50k jar)
* is proven in practice by apps with 100,000,000+ installs
* has advanced features like delivery threads, subscriber priorities, etc.
EventBus in 3 steps
-------------------
1. Define events:
```
Install-Package Naxam.EventBus.Droid
```
2. Prepare subscribers:
More at [original repository](https://github.com/greenrobot/EventBus/blob/master/README.md)