top.jfunc.common.event.async.AsyncEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
common utils like IOUtil,StrUtil,HoldProcessor.etc.
package top.jfunc.common.event.async;
import top.jfunc.common.event.core.ApplicationEvent;
/**
* 通用异事件,可以将非常耗时的工作放入runnable,调用EventKit.post(AsyncEvent)方法发布
* @author 熊诗言 2017/11/23
*/
public class AsyncEvent extends ApplicationEvent {
public AsyncEvent(Runnable runnable){
super(runnable);
}
}