Android EventBus 工具类

DevUtils Github

方法注释
register注册 EventBus
unregister解绑 EventBus
post发送事件消息
cancelEventDelivery取消事件传送
postSticky发送粘性事件消息
removeStickyEvent移除指定的粘性订阅事件
removeAllStickyEvents移除所有的粘性订阅事件
package dev.other;

import org.greenrobot.eventbus.EventBus;

/**
 * detail: EventBus 工具类
 * @author Ttt
 * <pre>
 *     eventbus: 注册后才能接收到该事件
 *     poststicky: 事件消费者在事件发布之后才注册也能接收到该事件
 * </pre>
 */
public final class EventBusUtils {

    private EventBusUtils() {
    }

    /**
     * 注册 EventBus
     * @param subscriber 订阅者
     */
    public static void register(final Object subscriber) {
        EventBus eventBus = EventBus.getDefault();
        if (!eventBus.isRegistered(subscriber)) {
            eventBus.register(subscriber);
        }
    }

    /**
     * 解绑 EventBus
     * @param subscriber 订阅者
     */
    public static void unregister(final Object subscriber) {
        EventBus eventBus = EventBus.getDefault();
        if (eventBus.isRegistered(subscriber)) {
            eventBus.unregister(subscriber);
        }
    }

    // =========
    // = Event =
    // =========

    /**
     * 发送事件消息
     * @param event Event
     */
    public static void post(final Object event) {
        EventBus.getDefault().post(event);
    }

    /**
     * 取消事件传送
     * @param event Event
     */
    public static void cancelEventDelivery(final Object event) {
        EventBus.getDefault().cancelEventDelivery(event);
    }

    // =

    /**
     * 发送粘性事件消息
     * @param event Event
     */
    public static void postSticky(final Object event) {
        EventBus.getDefault().postSticky(event);
    }

    /**
     * 移除指定的粘性订阅事件
     * @param eventType Event Type
     * @param <T>       泛型
     */
    public static <T> void removeStickyEvent(final Class<T> eventType) {
        T stickyEvent = EventBus.getDefault().getStickyEvent(eventType);
        if (stickyEvent != null) {
            EventBus.getDefault().removeStickyEvent(stickyEvent);
        }
    }

    /**
     * 移除所有的粘性订阅事件
     */
    public static void removeAllStickyEvents() {
        EventBus.getDefault().removeAllStickyEvents();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值