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 voidWebSocketListener. onWebsocketOpen(WebSocket conn, Handshakedata d)Called after onHandshakeReceived returns true.private voidWebSocketImpl. open(Handshakedata d) -
Uses of Handshakedata in org.java_websocket.client
Methods in org.java_websocket.client with parameters of type Handshakedata Modifier and Type Method Description voidWebSocketClient. 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 HandshakedataDraft. translateHandshake(java.nio.ByteBuffer buf)Methods in org.java_websocket.drafts with parameters of type Handshakedata Modifier and Type Method Description protected booleanDraft. basicAccept(Handshakedata handshakedata)java.util.List<java.nio.ByteBuffer>Draft. createHandshake(Handshakedata handshakedata)java.util.List<java.nio.ByteBuffer>Draft. createHandshake(Handshakedata handshakedata, boolean withcontent)java.util.List<java.nio.ByteBuffer>Draft. createHandshake(Handshakedata handshakedata, Role ownrole)Deprecated.use createHandshake without the rolejava.util.List<java.nio.ByteBuffer>Draft. createHandshake(Handshakedata handshakedata, Role ownrole, boolean withcontent)Deprecated.use createHandshake without the role since it does not have any effect(package private) intDraft. readVersion(Handshakedata handshakedata) -
Uses of Handshakedata in org.java_websocket.handshake
Subinterfaces of Handshakedata in org.java_websocket.handshake Modifier and Type Interface Description interfaceClientHandshakeThe interface for a client handshakeinterfaceClientHandshakeBuilderThe interface for building a handshake for the clientinterfaceHandshakeBuilderThe interface for building a handshakeinterfaceServerHandshakeInterface for the server handshakeinterfaceServerHandshakeBuilderThe interface for building a handshake for the serverClasses in org.java_websocket.handshake that implement Handshakedata Modifier and Type Class Description classHandshakedataImpl1Implementation of a handshake builderclassHandshakeImpl1ClientImplementation for a client handshakeclassHandshakeImpl1ServerImplementation 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 voidWebSocketServer. onWebsocketOpen(WebSocket conn, Handshakedata handshake)
-