Class JettyXhrTransport
- All Implemented Interfaces:
- Lifecycle,- InfoReceiver,- Transport,- XhrTransport
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));
- Since:
- 4.1
- Author:
- Rossen Stoyanchev
- 
Field SummaryFields inherited from class org.springframework.web.socket.sockjs.client.AbstractXhrTransportlogger, PRELUDE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidconnectInternal(TransportRequest transportRequest, WebSocketHandler handler, URI url, HttpHeaders handshakeHeaders, XhrClientSockJsSession session, SettableListenableFuture<WebSocketSession> connectFuture) protected ResponseEntity<String>executeInfoRequestInternal(URI infoUrl, HttpHeaders headers) protected ResponseEntity<String>executeRequest(URI url, org.eclipse.jetty.http.HttpMethod method, HttpHeaders headers, String body) executeSendRequestInternal(URI url, HttpHeaders headers, TextMessage message) org.eclipse.jetty.client.HttpClientbooleanCheck whether this component is currently running.voidstart()Start this component.voidstop()Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method.Methods inherited from class org.springframework.web.socket.sockjs.client.AbstractXhrTransportconnect, executeInfoRequest, executeSendRequest, getTransportTypes, isXhrStreamingDisabled, setXhrStreamingDisabled
- 
Constructor Details- 
JettyXhrTransportpublic JettyXhrTransport(org.eclipse.jetty.client.HttpClient httpClient) 
 
- 
- 
Method Details- 
getHttpClientpublic org.eclipse.jetty.client.HttpClient getHttpClient()
- 
startpublic void start()Description copied from interface:LifecycleStart this component.Should 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. 
- 
stoppublic void stop()Description copied from interface:LifecycleStop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method. Consider implementingSmartLifecycleand itsstop(Runnable)variant when asynchronous stop behavior is necessary.Note that this stop notification is not guaranteed to come before destruction: On regular shutdown, Lifecyclebeans 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, a given bean's destroy method will be called without any consideration of stop signals upfront.Should not throw an exception if the component is not running (not started yet). In the case of a container, this will propagate the stop signal to all components that apply. 
- 
isRunningpublic boolean isRunning()Description copied from interface:LifecycleCheck whether this component is currently running.In the case of a container, this will return trueonly if all components that apply are currently running.
- 
connectInternalprotected void connectInternal(TransportRequest transportRequest, WebSocketHandler handler, URI url, HttpHeaders handshakeHeaders, XhrClientSockJsSession session, SettableListenableFuture<WebSocketSession> connectFuture) - Specified by:
- connectInternalin class- AbstractXhrTransport
 
- 
executeInfoRequestInternal- Specified by:
- executeInfoRequestInternalin class- AbstractXhrTransport
 
- 
executeSendRequestInternalpublic ResponseEntity<String> executeSendRequestInternal(URI url, HttpHeaders headers, TextMessage message) - Specified by:
- executeSendRequestInternalin class- AbstractXhrTransport
 
- 
executeRequestprotected ResponseEntity<String> executeRequest(URI url, org.eclipse.jetty.http.HttpMethod method, HttpHeaders headers, @Nullable String body) 
 
-