com.litongjava.tio.http.server.handler.HttpRequestHandler Maven / Gradle / Ivy
package com.litongjava.tio.http.server.handler;
import com.litongjava.tio.http.common.HttpRequest;
import com.litongjava.tio.http.common.HttpResponse;
@FunctionalInterface
public interface HttpRequestHandler {
HttpResponse handle(HttpRequest httpRequest) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy