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

com.blade.mvc.handler.RequestHandler Maven / Gradle / Ivy

There is a newer version: 2.0.15.RELEASE
Show newest version
package com.blade.mvc.handler;

import com.blade.mvc.http.Request;
import com.blade.mvc.http.Response;

/**
 * @author biezhi
 * @date 2018/6/29
 */
@FunctionalInterface
public interface RequestHandler {

    void handle(T ctx, Request request, Response response) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy