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

cn.schoolwow.quickhttp.handler.Handler Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package cn.schoolwow.quickhttp.handler;

import java.io.IOException;

/**
 * 处理器接口定义
 */
public interface Handler {
    /**
     * 执行http请求
     *
     * @return 下一个处理器, 为null则直接返回
     */
    Handler handle() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy