io.higgs.ws.WebSocketEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ws-server Show documentation
Show all versions of ws-server Show documentation
Higgs' WebSocket server implementation
package io.higgs.ws;
import io.higgs.core.InvokableMethod;
import io.higgs.ws.protocol.WebSocketConfiguration;
import io.higgs.ws.protocol.WebSocketHandler;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.http.websocketx.TextWebSocketFrame;
import java.util.Queue;
/**
* @author Courtney Robinson
*/
public interface WebSocketEventHandler {
void onMessage(TextWebSocketFrame frame, WebSocketHandler webSocketHandler, ChannelHandlerContext ctx,
Queue methods, WebSocketConfiguration config);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy