TransportHandler implementations
for processing incoming requests and their
org.springframework.sockjs.SockJsSession counterparts for
sending messages over the various transports.See: Description
| Class | Description |
|---|---|
| AbstractHttpReceivingTransportHandler |
Base class for HTTP-based transports that read input messages from HTTP requests.
|
| AbstractHttpSendingTransportHandler |
Base class for HTTP-based transports that send messages over HTTP.
|
| AbstractHttpSockJsSession |
An abstract base class for use with HTTP transport based SockJS sessions.
|
| EventSourceTransportHandler |
A TransportHandler for sending messages via Server-Sent events:
http://dev.w3.org/html5/eventsource/.
|
| HtmlFileTransportHandler |
An HTTP
TransportHandler that uses a famous browsder document.domain technique:
http://stackoverflow.com/questions/1481251/what-does-document-domain-document-domain-do |
| JsonpPollingTransportHandler |
A TransportHandler that sends messages via JSONP polling.
|
| JsonpTransportHandler |
A
TransportHandler that receives messages over HTTP. |
| PollingSockJsSession |
A SockJS session for use with polling HTTP transports.
|
| SockJsWebSocketHandler |
An implementation of
WebSocketHandler that adds SockJS messages frames, sends
SockJS heartbeat messages, and delegates lifecycle events and messages to a target
WebSocketHandler. |
| StreamingSockJsSession |
A SockJS session for use with streaming HTTP transports.
|
| WebSocketServerSockJsSession |
A SockJS session for use with the WebSocket transport.
|
| WebSocketTransportHandler |
A WebSocket
TransportHandler. |
| XhrPollingTransportHandler |
A
TransportHandler based on XHR (long) polling. |
| XhrStreamingTransportHandler |
A
TransportHandler that sends messages over an HTTP streaming request. |
| XhrTransportHandler |
A
TransportHandler that receives messages over HTTP. |
TransportHandler implementations
for processing incoming requests and their
org.springframework.sockjs.SockJsSession counterparts for
sending messages over the various transports.