com.github.yoojia.events.HALOEvents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of halo-events Show documentation
Show all versions of halo-events Show documentation
Tiny event bus like Guava.EventBus
package com.github.yoojia.events;
/**
* @author YOOJIA.CHEN ([email protected])
* @version 2015-09-10
*/
public interface HALOEvents {
/**
* 设置异常事件监听器
*/
void setErrorListener(ErrorListener listener);
/**
* 注册监听对象
*/
void register(Object host);
/**
* 发送事件
*/
void post(Object event);
/**
* 销毁事件总线
*/
void destroy();
}