eventbus 备注

Event在整个系统中是单例的。

EventBus.getDefault().register(this); 注册

EventBus.getDefault().unregister(this); 注销

处理:

public void onEventMainThread(Integer type){
  if(type==LOGOUT){
    mainFragment.setCurrentItem(1);
  }
}

发送:

EventBus.getDefault().post(MainActivity.LOGOUT);

参考网络资料如下:

 onEvent:如果使用onEvent作为订阅函数,那么该事件在哪个线程发布出来的,onEvent就会在这个线程中运行,也就是说发布事件和接收事件线程在同一个线程。使用这个方法时,在onEvent方法中不能执行耗时操作,如果执行耗时操作容易导致事件分发延迟。
onEventMainThread:如果使用onEventMainThread作为订阅函数,那么不论事件是在哪个线程中发布出来的,onEventMainThread都会在UI线程中执行,接收事件就会在UI线程中运行,这个在Android中是非常有用的,因为在Android中只能在UI线程中跟新UI,所以在onEvnetMainThread方法中是不能执行耗时操作的。
onEventBackground:如果使用onEventBackgrond作为订阅函数,那么如果事件是在UI线程中发布出来的,那么onEventBackground就会在子线程中运行,如果事件本来就是子线程中发布出来的,那么onEventBackground函数直接在该子线程中执行。
onEventAsync:使用这个函数作为订阅函数,那么无论事件在哪个线程发布,都会创建新的子线程在执行onEventAsync.

原文地址:https://www.cnblogs.com/Fredric-2013/p/5301179.html