码迷,mamicode.com
首页 > 其他好文 > 详细

EventBus应用

时间:2018-03-11 23:10:56      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:AC   ati   new   scribe   nis   简化   解耦   演示   ret   

EventBus作为消息总线,通过解耦发布者和订阅者简化事件传递

本文实现一个handler演示如何使用EventBus

定义消息类型对象EventMsg

package com.binfoo.observer.event;

/**
 * 定义消息类型对象
 */
public class EventMsg {
    private String msg;

    public EventMsg(){
    }

    public EventMsg(String msg){
        this.msg = msg;
    }

    public String getMsg() {
        return msg;
    }

    @Override
    public String toString() {
        return "EventMsg{" +
                "msg=‘" + msg + ‘\‘‘ +
                ‘}‘;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }


}
  • 实现Runnable接口的EventHandler,含有成员EventBus,当线程启动时候,进行注册线程本身
package com.binfoo.observer.event;

import com.google.common.eventbus.AllowConcurrentEvents;
import com.google.common.eventbus.EventBus;
import com.google.common.eventbus.Subscribe;

public class EventHandler implements Runnable{
    public EventBus getEventBus() {
        return eventBus;
    }

    public void setEventBus(EventBus eventBus) {
        this.eventBus = eventBus;
    }

    private EventBus eventBus;

    public EventHandler(EventBus eventBus){
        this.eventBus = eventBus;

    }


    @Subscribe
    @AllowConcurrentEvents
    public void handler(EventMsg eventMsg){

        System.out.println("线程: " + Thread.currentThread().getName()+ " 处理得到消息: " + eventMsg.toString());

    }

    @Override
    public void run() {
        eventBus.register(this);
        System.out.println(Thread.currentThread().getName());
    }
}
  • 进行测试,交替发送不同的消息
package com.binfoo.observer.event;

import com.google.common.eventbus.EventBus;

public class EventHandlerTest {
    public static void main(String[] args) {


        EventMsg msg1 = new EventMsg("中国人民共和国万岁!");
        EventMsg msg2 = new EventMsg("世界人民大团结万岁!");
        EventMsg msg3= new EventMsg("!!!!!!!!!");
        EventHandler eventHandler = new EventHandler(new EventBus());
        new Thread(eventHandler).start();

        for (int j =0; j<10;j++){

            try {
                    Thread.sleep(200);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }

                if (j%2==0){
                    System.out.println("------" + j);
                    eventHandler.getEventBus().post(msg1);
                }else if (j%2==1){
                    System.out.println("======" + j);
                    eventHandler.getEventBus().post(msg2);
                }else {
                    System.out.println("......." + j);
                    eventHandler.getEventBus().post(msg3);
                }
            }

        }

    }
  • 我们看到结果
  • Thread-1
    ------0
    线程: main 处理得到消息: EventMsg{msg=‘中国人民共和国万岁!‘}
    ======1
    线程: main 处理得到消息: EventMsg{msg=‘世界人民大团结万岁!‘}
    ------2
    线程: main 处理得到消息: EventMsg{msg=‘中国人民共和国万岁!‘}
    ======3
    线程: main 处理得到消息: EventMsg{msg=‘世界人民大团结万岁!‘}
    ------4
    线程: main 处理得到消息: EventMsg{msg=‘中国人民共和国万岁!‘}
    ======5
    线程: main 处理得到消息: EventMsg{msg=‘世界人民大团结万岁!‘}
    ------6
    线程: main 处理得到消息: EventMsg{msg=‘中国人民共和国万岁!‘}
    ======7
    线程: main 处理得到消息: EventMsg{msg=‘世界人民大团结万岁!‘}
    ------8
    线程: main 处理得到消息: EventMsg{msg=‘中国人民共和国万岁!‘}
    ======9
    线程: main 处理得到消息: EventMsg{msg=‘世界人民大团结万岁!‘}
    
    Process finished with exit code 0

     

EventBus应用

标签:AC   ati   new   scribe   nis   简化   解耦   演示   ret   

原文地址:https://www.cnblogs.com/binfoo/p/8546721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!