EventBus使用详解——EventBus使用进阶

Posted 胖子luffy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EventBus使用详解——EventBus使用进阶相关的知识,希望对你有一定的参考价值。

一、概述

前一篇给大家装简单演示了EventBus的onEventMainThread()函数的接收,其实EventBus还有另外有个不同的函数,他们分别是:

1、onEvent
2、onEventMainThread
3、onEventBackgroundThread
4、onEventAsync

这四种订阅函数都是使用onEvent开头的,它们的功能稍有不同,在介绍不同之前先介绍两个概念:
告知观察者事件发生时通过EventBus.post函数实现,这个过程叫做事件的发布,观察者被告知事件发生叫做事件的接收,是通过下面的订阅函数实现的。

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

二、实战

1、解析

上面列出的这四个函数,关键问题在于,我们怎么指定调用哪个函数呢?

我们先研究一下,上一篇中是怎么调用的onEventMainThread函数,除了在接收端注册与反注册以后,关键问题在于新建的一个类:

新建一个类:

[java]  view plain  copy  
  1. package com.harvic.other;  
  2.   
  3. public class FirstEvent   
  4.   
  5.     private String mMsg;  
  6.     public FirstEvent(String msg)   
  7.         // TODO Auto-generated constructor stub  
  8.         mMsg = msg;  
  9.       
  10.     public String getMsg()  
  11.         return mMsg;  
  12.       
  13.   
发送时:

[java]  view plain  copy  
  1. EventBus.getDefault().post(new FirstEvent("FirstEvent btn clicked"));    
接收时: [java]  view plain  copy  
  1. public void onEventMainThread(FirstEvent event)     
  2.   
  3.     ……  
  4.     
发现什么问题了没?

没错,发送时发送的是这个类的实例,接收时参数就是这个类实例。

所以!!!!!!当发过来一个消息的时候,EventBus怎么知道要调哪个函数呢,就看哪个函数传进去的参数是这个类的实例,哪个是就调哪个。那如果有两个是呢,那两个都会被调用!!!!

为了证明这个问题,下面写个例子,先看下效果

2、实例

先看看我们要实现的效果:

这次我们在上一篇的基础上,新建三个类:FirstEvent、SecondEvent、ThirdEvent,在第二个Activity中发送请求,在MainActivity中接收这三个类的实例,接收时的代码为:

[java]  view plain  copy  
  1. public void onEventMainThread(FirstEvent event)   
  2.   
  3.     Log.d("harvic""onEventMainThread收到了消息:" + event.getMsg());  
  4.   
  5.   
  6. public void onEventMainThread(SecondEvent event)   
  7.   
  8.     Log.d("harvic""onEventMainThread收到了消息:" + event.getMsg());  
  9.   
  10.   
  11. public void onEvent(ThirdEvent event)   
  12.     Log.d("harvic""OnEvent收到了消息:" + event.getMsg());  
  13.   
使用两个onEventMainThread分别接收FirstEvent实例的消息和SecondEvent实例的消息,使用onEvent接收ThirdEvent实例的消息。界面操作及结果如下:


Log输出结果:


可以看到,在发送FirstEvent时,在MainActiviy中虽然有三个函数,但只有第一个onEventMainThread函数的接收参数是FirstEvent,所以会传到它这来接收。所以这里识别调用EventBus中四个函数中哪个函数,是通过参数中的实例来决定的。

因为我们是在上一篇例子的基础上完成的,所以这里的代码就不详细写了,只写改动的部分。

1、三个类

[java]  view plain  copy  
  1. package com.harvic.other;  
  2.   
  3. public class FirstEvent   
  4.   
  5.     private String mMsg;  
  6.     public FirstEvent(String msg)   
  7.         // TODO Auto-generated constructor stub  
  8.         mMsg = msg;  
  9.       
  10.     public String getMsg()  
  11.         return mMsg;  
  12.       
  13.   
[java]  view plain  copy  
  1. package com.harvic.other;  
  2.   
  3. public class SecondEvent  
  4.   
  5.     private String mMsg;  
  6.     public SecondEvent(String msg)   
  7.         // TODO Auto-generated constructor stub  
  8.         mMsg = "MainEvent:"+msg;  
  9.       
  10.     public String getMsg()  
  11.         return mMsg;  
  12.       
  13.   
[java]  view plain  copy  
  1. package com.harvic.other;  
  2.   
  3. public class ThirdEvent   
  4.   
  5.     private String mMsg;  
  6.     public ThirdEvent(String msg)   
  7.         // TODO Auto-generated constructor stub  
  8.         mMsg = msg;  
  9.       
  10.     public String getMsg()  
  11.         return mMsg;  
  12.       
  13.   

2、发送

然后在SecondActivity中新建三个按钮,分别发送不同的类的实例,代码如下:

[java]  view plain  copy  
  1. package com.harvic.tryeventbus2;  
  2.   
  3. import com.harvic.other.FirstEvent;  
  4. import com.harvic.other.SecondEvent;  
  5. EventBus使用详解——初步使用EventBus

    EventBus使用详解——EventBus使用进阶

    EventBus使用详解——EventBus使用进阶

    EventBus使用详解——EventBus使用进阶

    EventBus使用详解——EventBus使用进阶

    EventBus使用详解——初步使用EventBus