Class SessionConnectEvent
java.lang.Object
java.util.EventObject
org.springframework.context.ApplicationEvent
org.springframework.web.socket.messaging.AbstractSubProtocolEvent
org.springframework.web.socket.messaging.SessionConnectEvent
- All Implemented Interfaces:
 Serializable
Event raised when a new WebSocket client using a Simple Messaging Protocol
 (for example, STOMP) as the WebSocket sub-protocol issues a connect request.
 
Note that this is not the same as the WebSocket session getting established but rather the client's first attempt to connect within the sub-protocol, for example sending the STOMP CONNECT frame.
- Since:
 - 4.0.3
 - Author:
 - Rossen Stoyanchev
 - See Also:
 
- 
Field Summary
Fields inherited from class java.util.EventObject
source - 
Constructor Summary
ConstructorsConstructorDescriptionSessionConnectEvent(Object source, Message<byte[]> message) Create a new SessionConnectEvent.SessionConnectEvent(Object source, Message<byte[]> message, Principal user)  - 
Method Summary
Methods inherited from class org.springframework.web.socket.messaging.AbstractSubProtocolEvent
getMessage, getUser, toStringMethods inherited from class org.springframework.context.ApplicationEvent
getTimestampMethods inherited from class java.util.EventObject
getSource 
- 
Constructor Details
- 
SessionConnectEvent
Create a new SessionConnectEvent.- Parameters:
 source- the component that published the event (nevernull)message- the connect message
 - 
SessionConnectEvent
 
 -