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.http | |
org.eclipse.jetty.fcgi.client.http | |
org.eclipse.jetty.spdy.client.http |
Modifier and Type | Method and Description |
---|---|
HttpExchange |
HttpChannel.disassociate() |
protected HttpExchange |
HttpSender.getHttpExchange() |
protected HttpExchange |
HttpReceiver.getHttpExchange() |
HttpExchange |
HttpChannel.getHttpExchange() |
Modifier and Type | Method and Description |
---|---|
Deque<HttpExchange> |
HttpConversation.getExchanges() |
Queue<HttpExchange> |
HttpDestination.getHttpExchanges() |
Modifier and Type | Method and Description |
---|---|
void |
HttpChannel.associate(HttpExchange exchange) |
void |
HttpSender.proceed(HttpExchange exchange,
Throwable failure) |
abstract void |
HttpChannel.proceed(HttpExchange exchange,
Throwable failure) |
boolean |
HttpDestination.remove(HttpExchange exchange) |
protected boolean |
HttpReceiver.responseBegin(HttpExchange exchange)
Method to be invoked when the response status code is available.
|
protected boolean |
HttpReceiver.responseContent(HttpExchange exchange,
ByteBuffer buffer,
Callback callback)
Method to be invoked when response HTTP content is available.
|
protected boolean |
HttpReceiver.responseHeader(HttpExchange exchange,
HttpField field)
Method to be invoked when a response HTTP header is available.
|
protected boolean |
HttpReceiver.responseHeaders(HttpExchange exchange)
Method to be invoked after all response HTTP headers are available.
|
protected boolean |
HttpReceiver.responseSuccess(HttpExchange exchange)
Method to be invoked when the response is successful.
|
protected abstract void |
PoolingHttpDestination.send(C connection,
HttpExchange exchange) |
protected abstract void |
MultiplexHttpDestination.send(C connection,
HttpExchange exchange) |
void |
HttpSender.send(HttpExchange exchange) |
protected abstract void |
HttpConnection.send(HttpExchange exchange) |
protected abstract void |
HttpSender.sendContent(HttpExchange exchange,
HttpContent content,
Callback callback)
Implementations should send the content at the
HttpContent cursor position over the wire. |
protected abstract void |
HttpSender.sendHeaders(HttpExchange exchange,
HttpContent content,
Callback callback)
Implementations should send the HTTP headers over the wire, possibly with some content,
in a single write, and notify the given
callback of the result of this operation. |
protected boolean |
HttpSender.someToSuccess(HttpExchange exchange) |
Modifier and Type | Method and Description |
---|---|
void |
HttpChannelOverHTTP.proceed(HttpExchange exchange,
Throwable failure) |
protected void |
HttpDestinationOverHTTP.send(HttpConnectionOverHTTP connection,
HttpExchange exchange) |
protected void |
HttpConnectionOverHTTP.send(HttpExchange exchange) |
protected void |
HttpSenderOverHTTP.sendContent(HttpExchange exchange,
HttpContent content,
Callback callback) |
protected void |
HttpSenderOverHTTP.sendHeaders(HttpExchange exchange,
HttpContent content,
Callback callback) |
Modifier and Type | Method and Description |
---|---|
void |
HttpChannelOverFCGI.proceed(HttpExchange exchange,
Throwable failure) |
protected boolean |
HttpReceiverOverFCGI.responseBegin(HttpExchange exchange) |
protected boolean |
HttpReceiverOverFCGI.responseContent(HttpExchange exchange,
ByteBuffer buffer,
Callback callback) |
protected boolean |
HttpReceiverOverFCGI.responseHeader(HttpExchange exchange,
HttpField field) |
protected boolean |
HttpReceiverOverFCGI.responseHeaders(HttpExchange exchange) |
protected boolean |
HttpReceiverOverFCGI.responseSuccess(HttpExchange exchange) |
protected void |
MultiplexHttpDestinationOverFCGI.send(HttpConnectionOverFCGI connection,
HttpExchange exchange) |
protected void |
HttpDestinationOverFCGI.send(HttpConnectionOverFCGI connection,
HttpExchange exchange) |
protected void |
HttpConnectionOverFCGI.send(HttpExchange exchange) |
protected void |
HttpSenderOverFCGI.sendContent(HttpExchange exchange,
HttpContent content,
Callback callback) |
protected void |
HttpSenderOverFCGI.sendHeaders(HttpExchange exchange,
HttpContent content,
Callback callback) |
Modifier and Type | Method and Description |
---|---|
void |
HttpChannelOverSPDY.proceed(HttpExchange exchange,
Throwable failure) |
protected void |
HttpDestinationOverSPDY.send(HttpConnectionOverSPDY connection,
HttpExchange exchange) |
protected void |
HttpConnectionOverSPDY.send(HttpExchange exchange) |
protected void |
HttpSenderOverSPDY.sendContent(HttpExchange exchange,
HttpContent content,
Callback callback) |
protected void |
HttpSenderOverSPDY.sendHeaders(HttpExchange exchange,
HttpContent content,
Callback callback) |
Copyright © 1995-2015 Webtide. All Rights Reserved.