Uses of Interface
org.java_websocket.handshake.Handshakedata
-
Packages that use Handshakedata 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.org.java_websocket.server This package encapsulates all implementations in relation with the WebSocketServer. -
-
Uses of Handshakedata in org.java_websocket
Methods in org.java_websocket with parameters of type Handshakedata Modifier and Type Method Description void
WebSocketListener. onWebsocketOpen(WebSocket conn, Handshakedata d)
Called after onHandshakeReceived returns true. -
Uses of Handshakedata in org.java_websocket.client
Methods in org.java_websocket.client with parameters of type Handshakedata Modifier and Type Method Description void
WebSocketClient. onWebsocketOpen(WebSocket conn, Handshakedata handshake)
Calls subclass' implementation of onOpen. -
Uses of Handshakedata in org.java_websocket.drafts
Methods in org.java_websocket.drafts that return Handshakedata Modifier and Type Method Description Handshakedata
Draft. translateHandshake(ByteBuffer buf)
Methods in org.java_websocket.drafts with parameters of type Handshakedata Modifier and Type Method Description protected boolean
Draft. basicAccept(Handshakedata handshakedata)
List<ByteBuffer>
Draft. createHandshake(Handshakedata handshakedata, WebSocket.Role ownrole)
List<ByteBuffer>
Draft. createHandshake(Handshakedata handshakedata, WebSocket.Role ownrole, boolean withcontent)
-
Uses of Handshakedata in org.java_websocket.handshake
Subinterfaces of Handshakedata in org.java_websocket.handshake Modifier and Type Interface Description interface
ClientHandshake
The interface for a client handshakeinterface
ClientHandshakeBuilder
The interface for building a handshake for the clientinterface
HandshakeBuilder
The interface for building a handshakeinterface
ServerHandshake
Interface for the server handshakeinterface
ServerHandshakeBuilder
The interface for building a handshake for the serverClasses in org.java_websocket.handshake that implement Handshakedata Modifier and Type Class Description class
HandshakedataImpl1
Implementation of a handshake builderclass
HandshakeImpl1Client
Implementation for a client handshakeclass
HandshakeImpl1Server
Implementation for a server handshake -
Uses of Handshakedata in org.java_websocket.server
Methods in org.java_websocket.server with parameters of type Handshakedata Modifier and Type Method Description void
WebSocketServer. onWebsocketOpen(WebSocket conn, Handshakedata handshake)
-