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 TypeClassDescriptionclassASubProtocolHandlerfor 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 SubProtocolHandlerSubProtocolWebSocketHandler.findProtocolHandler(WebSocketSession session) Find aSubProtocolHandlerfor 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 TypeMethodDescriptionvoidSubProtocolWebSocketHandler.addProtocolHandler(SubProtocolHandler handler) Register a sub-protocol handler.voidSubProtocolWebSocketHandler.setDefaultProtocolHandler(@Nullable SubProtocolHandler defaultProtocolHandler) Set theSubProtocolHandlerto 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 TypeMethodDescriptionvoidSubProtocolWebSocketHandler.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.