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

rebue.wheel.vertx.spi.GlobalRouteHandlerFactory Maven / Gradle / Ivy

The newest version!
package rebue.wheel.vertx.spi;

import io.vertx.core.Handler;
import io.vertx.ext.web.RoutingContext;

/**
 * 全局路由处理器工厂
 *
 * @author zbz
 */
public interface GlobalRouteHandlerFactory {

    /**
     * @return 工厂名称
     */
    String name();

    /**
     * 创建全局路由前置处理器
     *
     * @return 全局路由前置处理器
     */
    default Handler createPreHandler() {
        return null;
    };

    /**
     * 创建全局路由后置处理器
     *
     * @return 全局路由后置处理器
     */
    default Handler createPostHandler() {
        return null;
    };
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy