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 |
Modifier and Type | Class and Description |
---|---|
class |
HttpDestination |
class |
MultiplexHttpDestination |
class |
PoolingHttpDestination |
Modifier and Type | Field and Description |
---|---|
private Destination |
AbstractConnectionPool.destination |
private Destination |
HttpProxy.ProxyConnection.destination |
Modifier and Type | Method and Description |
---|---|
Destination |
HttpClient.getDestination(java.lang.String scheme,
java.lang.String host,
int port)
Returns a
Destination for the given scheme, host and port. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Destination> |
HttpClient.getDestinations() |
Constructor and Description |
---|
AbstractConnectionPool(Destination destination,
int maxConnections,
Callback requester) |
DuplexConnectionPool(Destination destination,
int maxConnections,
Callback requester) |
LeakTrackingConnectionPool(Destination destination,
int maxConnections,
Callback requester) |
ProxyConnection(Destination destination,
Connection connection,
Promise<Connection> promise) |
RoundRobinConnectionPool(Destination destination,
int maxConnections,
Callback requester) |
RoundRobinConnectionPool(Destination destination,
int maxConnections,
Callback requester,
int maxMultiplex) |
ValidatingConnectionPool(Destination destination,
int maxConnections,
Callback requester,
Scheduler scheduler,
long timeout) |
Modifier and Type | Class and Description |
---|---|
class |
HttpDestinationOverHTTP |