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

com.litongjava.tio.http.server.handler.HttpRoutes Maven / Gradle / Ivy

package com.litongjava.tio.http.server.handler;

public interface HttpRoutes {

  /**
   * 添加路由
   * @param path
   * @param handler
   */
  public void add(String path, HttpRequestRouteHandler handler);

  /**
   * 查找路由
   * @param path
   * @return
   */
  public HttpRequestRouteHandler find(String path);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy