Uses of Interface
org.springframework.web.socket.sockjs.SockJsService
Packages that use SockJsService
Package
Description
Support for annotation-based WebSocket setup in configuration classes.
Support classes for SockJS including an
AbstractSockJsService
implementation.Server-side support for SockJS transports including
TransportHandler
implementations
for processing incoming requests, their
session
counterparts for sending messages over the various transports, and
DefaultSockJsService
.TransportHandler
implementation classes as well as a concrete
SockJsService
.-
Uses of SockJsService in org.springframework.web.socket.config.annotation
Methods in org.springframework.web.socket.config.annotation that return SockJsServiceModifier and TypeMethodDescriptionprotected SockJsService
SockJsServiceRegistration.getSockJsService()
Methods in org.springframework.web.socket.config.annotation with parameters of type SockJsServiceModifier and TypeMethodDescriptionprotected abstract void
AbstractWebSocketHandlerRegistration.addSockJsServiceMapping
(M mappings, SockJsService sockJsService, WebSocketHandler handler, String pathPattern) protected void
ServletWebSocketHandlerRegistration.addSockJsServiceMapping
(MultiValueMap<HttpRequestHandler, String> mappings, SockJsService sockJsService, WebSocketHandler handler, String pathPattern) -
Uses of SockJsService in org.springframework.web.socket.sockjs.support
Classes in org.springframework.web.socket.sockjs.support that implement SockJsServiceModifier and TypeClassDescriptionclass
An abstract base class forSockJsService
implementations that provides SockJS path resolution and handling of static SockJS requests (e.g.Methods in org.springframework.web.socket.sockjs.support that return SockJsServiceModifier and TypeMethodDescriptionSockJsHttpRequestHandler.getSockJsService()
Return theSockJsService
.Constructors in org.springframework.web.socket.sockjs.support with parameters of type SockJsServiceModifierConstructorDescriptionSockJsHttpRequestHandler
(SockJsService sockJsService, WebSocketHandler webSocketHandler) Create a new SockJsHttpRequestHandler. -
Uses of SockJsService in org.springframework.web.socket.sockjs.transport
Classes in org.springframework.web.socket.sockjs.transport that implement SockJsServiceModifier and TypeClassDescriptionclass
A basic implementation ofSockJsService
with support for SPI-based transport handling and session management. -
Uses of SockJsService in org.springframework.web.socket.sockjs.transport.handler
Classes in org.springframework.web.socket.sockjs.transport.handler that implement SockJsServiceModifier and TypeClassDescriptionclass
A default implementation ofSockJsService
with all defaultTransportHandler
implementations pre-registered.