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

com.litongjava.tio.http.server.router.HttpRequestRouter Maven / Gradle / Ivy

There is a newer version: 3.7.3.v20241201-RELEASE
Show newest version
package com.litongjava.tio.http.server.router;

import com.litongjava.tio.http.server.handler.HttpRequestHandler;

public interface HttpRequestRouter {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy