Class WebSocketDocs.ConfigureEndpoint
java.lang.Object
org.eclipse.jetty.docs.programming.WebSocketDocs.ConfigureEndpoint
- All Implemented Interfaces:
Session.Listener
- Enclosing class:
WebSocketDocs
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.websocket.api.Session.Listener
Session.Listener.Abstract, Session.Listener.AbstractAutoDemanding, Session.Listener.AutoDemanding
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
onWebSocketOpen
(Session session) A WebSocketSession
has opened successfully and is ready to be used.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.jetty.websocket.api.Session.Listener
onWebSocketBinary, onWebSocketClose, onWebSocketError, onWebSocketFrame, onWebSocketPartialBinary, onWebSocketPartialText, onWebSocketPing, onWebSocketPong, onWebSocketText
-
Constructor Details
-
ConfigureEndpoint
public ConfigureEndpoint()
-
-
Method Details
-
onWebSocketOpen
Description copied from interface:Session.Listener
A WebSocket
Session
has opened successfully and is ready to be used.Applications can store the given
Session
as a field so it can be used to send messages back to the other peer.- Specified by:
onWebSocketOpen
in interfaceSession.Listener
- Parameters:
session
- the WebSocket session
-