google EventBus知识
EventBus 是一种事件发布订阅模式,通过 EventBus 我们可以很方便的实现解耦,将事件的发起和事件的处理的很好的分隔开来,很好的实现解耦。核心方法com.google.common.eventbus.EventBus#post 发布一个事件 (分发事件到监听器)EventBus#register: Registers all subscriber methods on {@...