Uses of Interface
org.springframework.web.socket.messaging.SubProtocolHandler
Packages that use SubProtocolHandler
Package
Description
WebSocket integration for Spring's messaging module.
-
Uses of SubProtocolHandler in org.springframework.web.socket.messaging
Classes in org.springframework.web.socket.messaging that implement SubProtocolHandlerModifier and TypeClassDescriptionclass
ASubProtocolHandler
for STOMP that supports versions 1.0, 1.1, and 1.2 of the STOMP specification.Methods in org.springframework.web.socket.messaging that return SubProtocolHandlerModifier and TypeMethodDescriptionprotected final SubProtocolHandler
SubProtocolWebSocketHandler.findProtocolHandler
(WebSocketSession session) Find aSubProtocolHandler
for the given session.SubProtocolWebSocketHandler.getDefaultProtocolHandler()
Return the default sub-protocol handler to use.Methods in org.springframework.web.socket.messaging that return types with arguments of type SubProtocolHandlerModifier and TypeMethodDescriptionSubProtocolWebSocketHandler.getProtocolHandlerMap()
Return the sub-protocols keyed by protocol name.SubProtocolWebSocketHandler.getProtocolHandlers()
Methods in org.springframework.web.socket.messaging with parameters of type SubProtocolHandlerModifier and TypeMethodDescriptionvoid
SubProtocolWebSocketHandler.addProtocolHandler
(SubProtocolHandler handler) Register a sub-protocol handler.void
SubProtocolWebSocketHandler.setDefaultProtocolHandler
(SubProtocolHandler defaultProtocolHandler) Set theSubProtocolHandler
to use when the client did not request a sub-protocol.Method parameters in org.springframework.web.socket.messaging with type arguments of type SubProtocolHandlerModifier and TypeMethodDescriptionvoid
SubProtocolWebSocketHandler.setProtocolHandlers
(List<SubProtocolHandler> protocolHandlers) Configure one or more handlers to use depending on the sub-protocol requested by the client in the WebSocket handshake request.