博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
rxbus
阅读量:6154 次
发布时间:2019-06-21

本文共 620 字,大约阅读时间需要 2 分钟。

hot3.png

public class RxBus {

private static final RxBus INSTANCE = new RxBus();private final Subject
mBusSubject = new SerializedSubject<>(PublishSubject.create());public static RxBus getInstance() { return INSTANCE;}public
Subscription register(final Class
eventClass, Action1
onNext) { return mBusSubject .filter(event -> event.getClass().equals(eventClass)) .map(obj -> (T) obj) .subscribe(onNext);}public void post(Object event) { mBusSubject.onNext(event);}

}

转载于:https://my.oschina.net/u/872141/blog/826546

你可能感兴趣的文章
域控制器安装
查看>>
老男孩教育高端技术沙龙活动分享--JAVA JVM调优实战
查看>>
activex 数字签证时间戳
查看>>
我的友情链接
查看>>
AIX 增大swap空间大小
查看>>
详解xtrabackup对MySQL进行备份和恢复的全过程
查看>>
oracle中使用序列生成编号
查看>>
Qemu in Ubuntu 12.04
查看>>
查询进程的IO
查看>>
Services and State with Ambari REST API
查看>>
解析CC***原理、CC***表现和CC防御策略
查看>>
最长公共子串
查看>>
我的友情链接
查看>>
1.4环境的准备(四)之Pycharm的使用技巧
查看>>
Java之Annotation
查看>>
MySQL两种常用的存储引擎(mysql调优)
查看>>
我的友情链接
查看>>
进程相关命令
查看>>
P3371最短路
查看>>
sudo和su的区别
查看>>