Uses of Interface
org.springframework.web.socket.sockjs.transport.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
Modifier and TypeMethodDescriptionSockJsServiceRegistration.setTransportHandlerOverrides
(TransportHandler... handlers) SockJsServiceRegistration.setTransportHandlers
(TransportHandler... handlers) -
Uses of TransportHandler in org.springframework.web.socket.sockjs.transport
Modifier and TypeMethodDescriptionTransportHandlingSockJsService.getTransportHandlers()
Return the registered handlers per transport type.ModifierConstructorDescriptionTransportHandlingSockJsService
(TaskScheduler scheduler, TransportHandler... handlers) Create a TransportHandlingSockJsService with givenhandler
types.ModifierConstructorDescriptionTransportHandlingSockJsService
(TaskScheduler scheduler, Collection<TransportHandler> handlers) Create a TransportHandlingSockJsService with givenhandler
types. -
Uses of TransportHandler in org.springframework.web.socket.sockjs.transport.handler
Modifier 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.ModifierConstructorDescriptionDefaultSockJsService
(TaskScheduler scheduler, TransportHandler... handlerOverrides) Create a DefaultSockJsService with overriddenhandler
types replacing the corresponding default handler implementation.ModifierConstructorDescriptionDefaultSockJsService
(TaskScheduler scheduler, Collection<TransportHandler> handlerOverrides) Create a DefaultSockJsService with overriddenhandler
types replacing the corresponding default handler implementation.