Uses of Interface
org.springframework.web.socket.sockjs.transport.TransportHandler
Packages that use TransportHandler
Package
Description
Support for annotation-based WebSocket setup in configuration classes.
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 TransportHandler in org.springframework.web.socket.config.annotation
Methods in org.springframework.web.socket.config.annotation with parameters of type TransportHandlerModifier and TypeMethodDescriptionSockJsServiceRegistration.setTransportHandlerOverrides
(TransportHandler... handlers) SockJsServiceRegistration.setTransportHandlers
(TransportHandler... handlers) -
Uses of TransportHandler in org.springframework.web.socket.sockjs.transport
Methods in org.springframework.web.socket.sockjs.transport that return types with arguments of type TransportHandlerModifier and TypeMethodDescriptionTransportHandlingSockJsService.getTransportHandlers()
Return the registered handlers per transport type.Constructors in org.springframework.web.socket.sockjs.transport with parameters of type TransportHandlerModifierConstructorDescriptionTransportHandlingSockJsService
(TaskScheduler scheduler, TransportHandler... handlers) Create a TransportHandlingSockJsService with givenhandler
types.Constructor parameters in org.springframework.web.socket.sockjs.transport with type arguments of type TransportHandlerModifierConstructorDescriptionTransportHandlingSockJsService
(TaskScheduler scheduler, Collection<TransportHandler> handlers) Create a TransportHandlingSockJsService with givenhandler
types. -
Uses of TransportHandler in org.springframework.web.socket.sockjs.transport.handler
Classes in org.springframework.web.socket.sockjs.transport.handler that implement TransportHandlerModifier and TypeClassDescriptionclass
Base class for HTTP transport handlers that receive messages via HTTP POST.class
Base class for HTTP transport handlers that push messages to connected clients.class
Common base class forTransportHandler
implementations.class
A TransportHandler for sending messages via Server-Sent Events: https://dev.w3.org/html5/eventsource/.class
An HTTPTransportHandler
that uses a famous browserdocument.domain
technique.class
WebSocket-basedTransportHandler
.class
ATransportHandler
based on XHR (long) polling.class
ATransportHandler
that receives messages over HTTP.class
ATransportHandler
that sends messages over an HTTP streaming request.Constructors in org.springframework.web.socket.sockjs.transport.handler with parameters of type TransportHandlerModifierConstructorDescriptionDefaultSockJsService
(TaskScheduler scheduler, TransportHandler... handlerOverrides) Create a DefaultSockJsService with overriddenhandler
types replacing the corresponding default handler implementation.Constructor parameters in org.springframework.web.socket.sockjs.transport.handler with type arguments of type TransportHandlerModifierConstructorDescriptionDefaultSockJsService
(TaskScheduler scheduler, Collection<TransportHandler> handlerOverrides) Create a DefaultSockJsService with overriddenhandler
types replacing the corresponding default handler implementation.