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

cn.hutool.http.server.action.Action Maven / Gradle / Ivy

There is a newer version: 5.8.32
Show newest version
package cn.hutool.http.server.action;

import cn.hutool.http.server.HttpServerRequest;
import cn.hutool.http.server.HttpServerResponse;

import java.io.IOException;

/**
 * 请求处理接口
* 当用户请求某个Path,则调用相应Action的doAction方法 * * @author Looly * @since 5.2.6 */ @FunctionalInterface public interface Action { /** * 处理请求 * * @param request 请求对象 * @param response 响应对象 * @throws IOException IO异常 */ void doAction(HttpServerRequest request, HttpServerResponse response) throws IOException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy