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

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

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

import com.blade.mvc.RouteContext;

/**
 * Route logic handler
 *
 * @author biezhi
 * 2017/5/31
 */
@FunctionalInterface
public interface RouteHandler {

    /**
     * Route handler
     *
     * @param context the current request context instance
     */
    void handle(RouteContext context);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy