Uses of Interface
org.springframework.web.socket.sockjs.frame.SockJsFrameFormat
Packages that use SockJsFrameFormat
Package
Description
Support classes for creating SockJS frames including the encoding and decoding
of SockJS message frames.
TransportHandler
implementation classes as well as a concrete
SockJsService
.SockJS specific implementations of
WebSocketSession
.-
Uses of SockJsFrameFormat in org.springframework.web.socket.sockjs.frame
Classes in org.springframework.web.socket.sockjs.frame that implement SockJsFrameFormatModifier and TypeClassDescriptionclass
A default implementation ofSockJsFrameFormat
that relies onString.format(String, Object...)
.. -
Uses of SockJsFrameFormat in org.springframework.web.socket.sockjs.transport.handler
Methods in org.springframework.web.socket.sockjs.transport.handler that return SockJsFrameFormatModifier and TypeMethodDescriptionprotected abstract SockJsFrameFormat
AbstractHttpSendingTransportHandler.getFrameFormat
(ServerHttpRequest request) protected SockJsFrameFormat
EventSourceTransportHandler.getFrameFormat
(ServerHttpRequest request) protected SockJsFrameFormat
HtmlFileTransportHandler.getFrameFormat
(ServerHttpRequest request) protected SockJsFrameFormat
XhrPollingTransportHandler.getFrameFormat
(ServerHttpRequest request) protected SockJsFrameFormat
XhrStreamingTransportHandler.getFrameFormat
(ServerHttpRequest request) -
Uses of SockJsFrameFormat in org.springframework.web.socket.sockjs.transport.session
Methods in org.springframework.web.socket.sockjs.transport.session with parameters of type SockJsFrameFormatModifier and TypeMethodDescriptionvoid
AbstractHttpSockJsSession.handleInitialRequest
(ServerHttpRequest request, ServerHttpResponse response, SockJsFrameFormat frameFormat) Handle the first request for receiving messages on a SockJS HTTP transport based session.void
AbstractHttpSockJsSession.handleSuccessiveRequest
(ServerHttpRequest request, ServerHttpResponse response, SockJsFrameFormat frameFormat) Handle all requests, except the first one, to receive messages on a SockJS HTTP transport based session.