EventBus 和 BroadcastReceiver 的区别

来源:互联网 发布:手机淘宝如何复制链接 编辑:程序博客网 时间:2024/05/17 03:37

官方的解释:

Q: How is EventBus different to Android’s BroadcastReceiver/Intent system?
A: Unlike Android’s BroadcastReceiver/Intent system, EventBus uses standard Java classes as events and offers a more convenient API. EventBus is intended for a lot more uses cases where you wouldn’t want to go through the hassle of setting up Intents, preparing Intent extras, implementing broadcast receivers, and extracting Intent extras again. Also, EventBus comes with a much lower overhead.

翻译:

EventBus 和 BroadcastReceiver 的区别

和Android的 BroadcastReceiver/Intent 不同,EventBus 用了标准java类的事件,提供了更方便的API。当你要用很多case去区分事件时,EventBus很一个很好的解决方案,你不需要大量设置intent、给intent添加extras、实现大量broadcast receivers、再获得intent、从intent里提取数据。而且,EventBus 的开销低得多。

1 0
原创粉丝点击