Uses of Interface
org.java_websocket.handshake.ServerHandshake
-
Packages that use ServerHandshake Package Description org.java_websocket org.java_websocket.client This package encapsulates all implementations in relation with the WebSocketClient.org.java_websocket.drafts This package encapsulates all implementations in relation with the WebSocket drafts.org.java_websocket.handshake This package encapsulates all interfaces and implementations in relation with the WebSocket handshake. -
-
Uses of ServerHandshake in org.java_websocket
Methods in org.java_websocket with parameters of type ServerHandshake Modifier and Type Method Description void
WebSocketAdapter. onWebsocketHandshakeReceivedAsClient(WebSocket conn, ClientHandshake request, ServerHandshake response)
void
WebSocketListener. onWebsocketHandshakeReceivedAsClient(WebSocket conn, ClientHandshake request, ServerHandshake response)
Called on the client side when the socket connection is first established, and the WebSocketImpl handshake response has been received. -
Uses of ServerHandshake in org.java_websocket.client
Methods in org.java_websocket.client with parameters of type ServerHandshake Modifier and Type Method Description abstract void
WebSocketClient. onOpen(ServerHandshake handshakedata)
Called after an opening handshake has been performed and the given websocket is ready to be written on. -
Uses of ServerHandshake in org.java_websocket.drafts
Methods in org.java_websocket.drafts with parameters of type ServerHandshake Modifier and Type Method Description Draft.HandshakeState
Draft_6455. acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
abstract Draft.HandshakeState
Draft. acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
-
Uses of ServerHandshake in org.java_websocket.handshake
Subinterfaces of ServerHandshake in org.java_websocket.handshake Modifier and Type Interface Description interface
ServerHandshakeBuilder
The interface for building a handshake for the serverClasses in org.java_websocket.handshake that implement ServerHandshake Modifier and Type Class Description class
HandshakeImpl1Server
Implementation for a server handshake
-