
com.wizzardo.http.Handler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http Show documentation
Show all versions of http Show documentation
Java HTTP-server, based on epoll-lib
The newest version!
package com.wizzardo.http;
import com.wizzardo.http.request.Request;
import com.wizzardo.http.response.Response;
import java.io.IOException;
/**
* @author: wizzardo
* Date: 07.09.14
*/
public interface Handler extends Named {
Response handle(Request request, Response response) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy