1 package fi.iki.elonen; 2 3 import fi.iki.elonen.NanoHTTPD.IHTTPSession; 4 5 public interface IWebSocketFactory { openWebSocket(IHTTPSession handshake)6 WebSocket openWebSocket(IHTTPSession handshake); 7 } 8