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

com.litongjava.tio.boot.websocket.WebSocketRouter Maven / Gradle / Ivy

There is a newer version: 1.8.6
Show newest version
package com.litongjava.tio.boot.websocket;

import java.util.Map;

import com.litongjava.tio.websocket.server.handler.IWebSocketHandler;

public interface WebSocketRouter {
  public IWebSocketHandler find(String path);

  public void add(String path, IWebSocketHandler wsHandler);
  
  public Map all();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy