2026-03-17 13:31:18 -07:00

19 lines
396 B
Java

package com.tridium.websockets;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.baja.sys.Context;
public interface WebSocketContext extends Context {
InputStream getInputStream() throws IOException;
OutputStream getOutputStream() throws IOException;
String getRemoteHost();
String getRequestURI();
String getScheme();
}