Uses of Interface
org.springframework.web.socket.sockjs.frame.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
Modifier and TypeClassDescriptionclass
A default implementation ofSockJsFrameFormat
that relies onString.format(String, Object...)
.. -
Uses of SockJsFrameFormat in org.springframework.web.socket.sockjs.transport.handler
Modifier 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
Modifier 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.