Uses of Interface
org.eclipse.jetty.client.api.Response.ResponseListener
-
Packages that use Response.ResponseListener Package Description org.eclipse.jetty.client Jetty Client : Implementation and Core Classes This package provides APIs, utility classes and an implementation of an asynchronous HTTP client.org.eclipse.jetty.client.api Jetty Client : API Classesorg.eclipse.jetty.client.util Jetty Client : Utility Classesorg.eclipse.jetty.proxy Jetty Proxy : Async Proxy Supportorg.eclipse.jetty.websocket.client Jetty WebSocket Client API -
-
Uses of Response.ResponseListener in org.eclipse.jetty.client
Classes in org.eclipse.jetty.client that implement Response.ResponseListener Modifier and Type Class Description protected classContinueProtocolHandler.ContinueListenerclassRedirectProtocolHandlerA protocol handler that handles redirect status codes 301, 302, 303, 307 and 308.classTimeoutCompleteListenerMethods in org.eclipse.jetty.client with type parameters of type Response.ResponseListener Modifier and Type Method Description <T extends Response.ResponseListener>
java.util.List<T>HttpContentResponse. getListeners(java.lang.Class<T> listenerClass)<T extends Response.ResponseListener>
java.util.List<T>HttpResponse. getListeners(java.lang.Class<T> type)Methods in org.eclipse.jetty.client that return types with arguments of type Response.ResponseListener Modifier and Type Method Description java.util.List<Response.ResponseListener>HttpConversation. getResponseListeners()Returns the list of response listeners that needs to be notified of response events.java.util.List<Response.ResponseListener>HttpExchange. getResponseListeners()protected java.util.List<Response.ResponseListener>HttpRequest. getResponseListeners()Methods in org.eclipse.jetty.client with parameters of type Response.ResponseListener Modifier and Type Method Description voidHttpConversation. updateResponseListeners(Response.ResponseListener overrideListener)Requests to update the response listener, eventually using the given override response listener, that must be notified instead of the first exchange response listeners.Method parameters in org.eclipse.jetty.client with type arguments of type Response.ResponseListener Modifier and Type Method Description voidResponseNotifier. forwardFailure(java.util.List<Response.ResponseListener> listeners, Response response, java.lang.Throwable failure)voidResponseNotifier. forwardFailureComplete(java.util.List<Response.ResponseListener> listeners, Request request, java.lang.Throwable requestFailure, Response response, java.lang.Throwable responseFailure)voidResponseNotifier. forwardSuccess(java.util.List<Response.ResponseListener> listeners, Response response)voidResponseNotifier. forwardSuccessComplete(java.util.List<Response.ResponseListener> listeners, Request request, Response response)voidResponseNotifier. notifyBegin(java.util.List<Response.ResponseListener> listeners, Response response)voidResponseNotifier. notifyComplete(java.util.List<Response.ResponseListener> listeners, Result result)voidResponseNotifier. notifyFailure(java.util.List<Response.ResponseListener> listeners, Response response, java.lang.Throwable failure)booleanResponseNotifier. notifyHeader(java.util.List<Response.ResponseListener> listeners, Response response, HttpField field)voidResponseNotifier. notifyHeaders(java.util.List<Response.ResponseListener> listeners, Response response)voidResponseNotifier. notifySuccess(java.util.List<Response.ResponseListener> listeners, Response response)protected voidHttpClient. send(HttpRequest request, java.util.List<Response.ResponseListener> listeners)protected voidHttpDestination. send(HttpRequest request, java.util.List<Response.ResponseListener> listeners)Constructor parameters in org.eclipse.jetty.client with type arguments of type Response.ResponseListener Constructor Description HttpExchange(HttpDestination destination, HttpRequest request, java.util.List<Response.ResponseListener> listeners)HttpResponse(Request request, java.util.List<Response.ResponseListener> listeners) -
Uses of Response.ResponseListener in org.eclipse.jetty.client.api
Subinterfaces of Response.ResponseListener in org.eclipse.jetty.client.api Modifier and Type Interface Description static interfaceResponse.AsyncContentListenerAsynchronous listener for the response content events.static interfaceResponse.BeginListenerListener for the response begin event.static interfaceResponse.CompleteListenerListener for the request and response completed event.static interfaceResponse.ContentListenerSynchronous listener for the response content events.static interfaceResponse.DemandedContentListenerAsynchronous listener for the response content events.static interfaceResponse.FailureListenerListener for the response failure event.static interfaceResponse.HeaderListenerListener for a response header event.static interfaceResponse.HeadersListenerListener for the response headers event.static interfaceResponse.ListenerListener for all response events.static interfaceResponse.SuccessListenerListener for the response succeeded event.Classes in org.eclipse.jetty.client.api that implement Response.ResponseListener Modifier and Type Class Description static classResponse.Listener.AdapterAn empty implementation ofResponse.ListenerMethods in org.eclipse.jetty.client.api with type parameters of type Response.ResponseListener Modifier and Type Method Description <T extends Response.ResponseListener>
java.util.List<T>Response. getListeners(java.lang.Class<T> listenerClass) -
Uses of Response.ResponseListener in org.eclipse.jetty.client.util
Classes in org.eclipse.jetty.client.util that implement Response.ResponseListener Modifier and Type Class Description classBufferingResponseListenerImplementation ofResponse.Listenerthat buffers the content up to a maximum length specified to the constructors.classFutureResponseListenerABufferingResponseListenerthat is also aFuture, to allow applications to block (indefinitely or for a timeout) untilFutureResponseListener.onComplete(Result)is called, or toabortthe request/response conversation.classInputStreamResponseListenerImplementation ofResponse.Listenerthat produces anInputStreamthat allows applications to read the response content. -
Uses of Response.ResponseListener in org.eclipse.jetty.proxy
Classes in org.eclipse.jetty.proxy that implement Response.ResponseListener Modifier and Type Class Description protected classAsyncMiddleManServlet.ProxyResponseListenerprotected classProxyServlet.ProxyResponseListener -
Uses of Response.ResponseListener in org.eclipse.jetty.websocket.client
Classes in org.eclipse.jetty.websocket.client that implement Response.ResponseListener Modifier and Type Class Description classWebSocketUpgradeRequest
-