All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.cola.event.EventHandlerI Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy