com.litongjava.tio.boot.websocket.WebSocketRouter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
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