public class JettyXhrTransport extends AbstractXhrTransport implements XhrTransport, Lifecycle
org.eclipse.jetty.client.HttpClient.
When used for testing purposes (e.g. load testing) the HttpClient
properties must be set to allow a larger than usual number of connections and
threads. For example:
HttpClient httpClient = new HttpClient(); httpClient.setMaxConnectionsPerDestination(1000); httpClient.setExecutor(new QueuedThreadPool(500));
| Modifier and Type | Class and Description |
|---|---|
private class |
JettyXhrTransport.SockJsResponseListener
Splits the body of an HTTP response into SockJS frames and delegates those
to an
XhrClientSockJsSession. |
| Modifier and Type | Field and Description |
|---|---|
private HttpClient |
httpClient |
logger, PRELUDE| Constructor and Description |
|---|
JettyXhrTransport(HttpClient httpClient) |
| Modifier and Type | Method and Description |
|---|---|
private static void |
addHttpHeaders(Request request,
HttpHeaders headers) |
protected void |
connectInternal(TransportRequest request,
WebSocketHandler handler,
java.net.URI url,
HttpHeaders handshakeHeaders,
XhrClientSockJsSession session,
SettableListenableFuture<WebSocketSession> connectFuture) |
protected ResponseEntity<java.lang.String> |
executeInfoRequestInternal(java.net.URI infoUrl) |
private void |
executeReceiveRequest(java.net.URI url,
HttpHeaders headers,
JettyXhrTransport.SockJsResponseListener listener) |
protected ResponseEntity<java.lang.String> |
executeRequest(java.net.URI url,
HttpMethod method,
HttpHeaders headers,
java.lang.String body) |
ResponseEntity<java.lang.String> |
executeSendRequestInternal(java.net.URI url,
HttpHeaders headers,
TextMessage message) |
HttpClient |
getHttpClient() |
boolean |
isRunning()
Check whether this component is currently running.
|
void |
start()
Start this component.
|
void |
stop()
Stop this component, typically in a synchronous fashion, such that the component is
fully stopped upon return of this method.
|
private static HttpHeaders |
toHttpHeaders(HttpFields httpFields) |
connect, executeInfoRequest, executeSendRequest, getRequestHeaders, getTransportTypes, isXhrStreamingDisabled, setRequestHeaders, setXhrStreamingDisabled, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitexecuteSendRequest, isXhrStreamingDisabledconnect, getTransportTypesexecuteInfoRequestpublic HttpClient getHttpClient()
public void start()
LifecycleShould not throw an exception if the component is already running.
In the case of a container, this will propagate the start signal to all components that apply.
start in interface LifecycleSmartLifecycle.isAutoStartup()public void stop()
LifecycleSmartLifecycle
and its stop(Runnable) variant when asynchronous stop behavior is necessary.
Note that this stop notification is not guaranteed to come before destruction: On
regular shutdown, Lifecycle beans will first receive a stop notification before
the general destruction callbacks are being propagated; however, on hot refresh during a
context's lifetime or on aborted refresh attempts, only destroy methods will be called.
Should not throw an exception if the component isn't started yet.
In the case of a container, this will propagate the stop signal to all components that apply.
stop in interface LifecycleSmartLifecycle.stop(Runnable),
DisposableBean.destroy()public boolean isRunning()
LifecycleIn the case of a container, this will return true only if all
components that apply are currently running.
protected ResponseEntity<java.lang.String> executeInfoRequestInternal(java.net.URI infoUrl)
executeInfoRequestInternal in class AbstractXhrTransportpublic ResponseEntity<java.lang.String> executeSendRequestInternal(java.net.URI url, HttpHeaders headers, TextMessage message)
executeSendRequestInternal in class AbstractXhrTransportprotected ResponseEntity<java.lang.String> executeRequest(java.net.URI url, HttpMethod method, HttpHeaders headers, java.lang.String body)
private static void addHttpHeaders(Request request,
HttpHeaders headers)
private static HttpHeaders toHttpHeaders(HttpFields httpFields)
protected void connectInternal(TransportRequest request, WebSocketHandler handler, java.net.URI url, HttpHeaders handshakeHeaders, XhrClientSockJsSession session, SettableListenableFuture<WebSocketSession> connectFuture)
connectInternal in class AbstractXhrTransportprivate void executeReceiveRequest(java.net.URI url,
HttpHeaders headers,
JettyXhrTransport.SockJsResponseListener listener)