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 givenhandlertypes.Constructor parameters in org.springframework.web.socket.sockjs.transport with type arguments of type TransportHandlerModifierConstructorDescriptionTransportHandlingSockJsService(TaskScheduler scheduler, Collection<TransportHandler> handlers) Create a TransportHandlingSockJsService with givenhandlertypes. -
Uses of TransportHandler in org.springframework.web.socket.sockjs.transport.handler
Classes in org.springframework.web.socket.sockjs.transport.handler that implement TransportHandlerModifier and TypeClassDescriptionclassBase class for HTTP transport handlers that receive messages via HTTP POST.classBase class for HTTP transport handlers that push messages to connected clients.classCommon base class forTransportHandlerimplementations.classA TransportHandler for sending messages via Server-Sent Events: https://dev.w3.org/html5/eventsource/.classAn HTTPTransportHandlerthat uses a famous browserdocument.domain technique.classWebSocket-basedTransportHandler.classATransportHandlerbased on XHR (long) polling.classATransportHandlerthat receives messages over HTTP.classATransportHandlerthat 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 overriddenhandlertypes 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 overriddenhandlertypes replacing the corresponding default handler implementation.