com.alibaba.cola.event.EventHandlerI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cola-core Show documentation
Show all versions of cola-core Show documentation
Cola framework core components
package com.alibaba.cola.event;
import com.alibaba.cola.dto.Response;
import java.util.concurrent.ExecutorService;
/**
* event handler
*
* @author shawnzhan.zxy
* @date 2017/11/20
*/
public interface EventHandlerI {
default public ExecutorService getExecutor(){
return null;
}
public R execute(E e);
}