Uses of Interface
org.java_websocket.handshake.ClientHandshake

Packages that use ClientHandshake
org.java_websocket   
org.java_websocket.drafts   
org.java_websocket.handshake   
org.java_websocket.server   
 

Uses of ClientHandshake in org.java_websocket
 

Methods in org.java_websocket with parameters of type ClientHandshake
 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.
 void WebSocketAdapter.onWebsocketHandshakeReceivedAsClient(WebSocket conn, ClientHandshake request, ServerHandshake response)
           
 ServerHandshakeBuilder WebSocketListener.onWebsocketHandshakeReceivedAsServer(WebSocket conn, Draft draft, ClientHandshake request)
          Called on the server side when the socket connection is first established, and the WebSocket handshake has been received.
 ServerHandshakeBuilder WebSocketAdapter.onWebsocketHandshakeReceivedAsServer(WebSocket conn, Draft draft, ClientHandshake request)
          This default implementation does not do anything.
 void WebSocketListener.onWebsocketHandshakeSentAsClient(WebSocket conn, ClientHandshake request)
          Called on the client side when the socket connection is first established, and the WebSocketImpl handshake has just been sent.
 void WebSocketAdapter.onWebsocketHandshakeSentAsClient(WebSocket conn, ClientHandshake request)
          This default implementation does not do anything which will cause the connections to always progress.
 

Uses of ClientHandshake in org.java_websocket.drafts
 

Methods in org.java_websocket.drafts with parameters of type ClientHandshake
 Draft.HandshakeState Draft_76.acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
           
 Draft.HandshakeState Draft_75.acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
           
 Draft.HandshakeState Draft_10.acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
           
abstract  Draft.HandshakeState Draft.acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
           
 Draft.HandshakeState Draft_76.acceptHandshakeAsServer(ClientHandshake handshakedata)
           
 Draft.HandshakeState Draft_75.acceptHandshakeAsServer(ClientHandshake handshakedata)
           
 Draft.HandshakeState Draft_17.acceptHandshakeAsServer(ClientHandshake handshakedata)
           
 Draft.HandshakeState Draft_10.acceptHandshakeAsServer(ClientHandshake handshakedata)
           
abstract  Draft.HandshakeState Draft.acceptHandshakeAsServer(ClientHandshake handshakedata)
           
 HandshakeBuilder Draft_76.postProcessHandshakeResponseAsServer(ClientHandshake request, ServerHandshakeBuilder response)
           
 HandshakeBuilder Draft_75.postProcessHandshakeResponseAsServer(ClientHandshake request, ServerHandshakeBuilder response)
           
 HandshakeBuilder Draft_10.postProcessHandshakeResponseAsServer(ClientHandshake request, ServerHandshakeBuilder response)
           
abstract  HandshakeBuilder Draft.postProcessHandshakeResponseAsServer(ClientHandshake request, ServerHandshakeBuilder response)
           
 

Uses of ClientHandshake in org.java_websocket.handshake
 

Subinterfaces of ClientHandshake in org.java_websocket.handshake
 interface ClientHandshakeBuilder
           
 

Classes in org.java_websocket.handshake that implement ClientHandshake
 class HandshakeImpl1Client
           
 

Uses of ClientHandshake in org.java_websocket.server
 

Methods in org.java_websocket.server with parameters of type ClientHandshake
abstract  void WebSocketServer.onOpen(WebSocket conn, ClientHandshake handshake)
          Called after an opening handshake has been performed and the given websocket is ready to be written on.
 



Copyright © 2013 Pusher. All Rights Reserved.