RxEBus——Android事件总线消息接收与通知插件,支持进程和线程通信

一个轻量级IPC通信框架; /EBus进程内与进程间通信包括实现原理可下午demo查看/

images

images

主要功能和特点:
1.支持跨页面通信;
2.支持进程(process)和线程(thread)通信;
3.根据指定的receivekey分发消息机制;
4.消息发送与接收参数支持无限个;
5.支持跨应用通信;

引用

需要接收消息位置注册EBus

1.项目build.gradle引用仓库地址
repositories {
    maven { url 'http://mv.slcore.com:81/content/repositories/geeasejars/' }
}

2.对应模块build.gradle引用以下版本
implementation 'com.cloud:ebus:1.0.2'

使用

需要接收消息位置注册EBus
EBus.getInstance().registered(this);
发送消息事件
//进程内通信(Posts the given event to the event bus)
EBus.getInstance().post(String receiveKey, Object... event)

//跨进程通信(Posts the given event to the event bus for current process or other process)
EBus.getInstance().postMultiProcess(Context postProcessContext, String receiveKey, Object... event)
接收消息处理
@SubscribeEBus(receiveKey = "receive_key",threadMode = ThreadModeEBus.MAIN)
public void onEventTest(String data) {
    
}
//其中接收参数类型与个数和发送消息可变参数对应即可;

与EventBus比较

选项

RxEBus

EventBus

备注
进程间通信 
接收参数个数可自定义一个 
性能-RxEBus指定key对应发送; EventBus根据参数类型,只要参数类型一致都会收到消息;
方便EventBus接收消息体时需要定义不同的model容易产生冗余;而RxEBus只要追加参数即可;

最后附上Github链接如果觉得有用请帮忙点个星吧

Github地址请猛戳这里
Github地址请猛戳这里
Github地址请猛戳这里

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值