接口 Connection
- 所有已知实现类:
RealConnection
Typically instances of this class are created, connected and exercised automatically by the HTTP client. Applications may use this class to monitor HTTP connections as members of a connection pool.
Do not confuse this class with the misnamed HttpURLConnection, which isn't so much a
connection as a single request/response exchange.
Modern TLS
There are tradeoffs when selecting which options to include when negotiating a secure connection to a remote host. Newer TLS options are quite useful:
- Server Name Indication (SNI) enables one IP address to negotiate secure connections for multiple domain names.
- Application Layer Protocol Negotiation (ALPN) enables the HTTPS port (443) to be used to negotiate HTTP/2.
Unfortunately, older HTTPS servers refuse to connect when such options are presented. Rather than avoiding these options entirely, this class allows a connection to be attempted with modern options and then retried without them should the attempt fail.
Connection Reuse
Each connection can carry a varying number of streams, depending on the underlying protocol
being used. HTTP/1.x connections can carry either zero or one streams. HTTP/2 connections can
carry any number of streams, dynamically configured with SETTINGS_MAX_CONCURRENT_STREAMS.
A connection currently carrying zero streams is an idle stream. We keep it alive because reusing
an existing connection is typically faster than establishing a new one.
When a single logical call requires multiple streams due to redirects or authorization challenges, we prefer to use the same physical connection for all streams in the sequence. There are potential performance and behavior consequences to this preference. To support this feature, this class separates allocations from streams. An allocation is created by a call, used for one or more streams, and then released. An allocated connection won't be stolen by other calls while a redirect or authorization challenge is being handled.
When the maximum concurrent streams limit is reduced, some allocations will be rescinded. Attempting to create new streams on these allocations will fail.
Note that an allocation may be released before its stream is completed. This is intended to make bookkeeping easier for the caller: releasing the allocation as soon as the terminal stream has been found. But only complete the stream once its data stream has been exhausted.
-
方法概要
修饰符和类型方法说明Returns the TLS handshake used to establish this connection, or null if the connection is not HTTPS.protocol()Returns the protocol negotiated by this connection, orProtocol.HTTP_1_1if no protocol has been negotiated.route()Returns the route used by this connection.socket()Returns the socket that this connection is using.
-
方法详细资料
-
route
Route route()Returns the route used by this connection. -
socket
Socket socket()Returns the socket that this connection is using. Returns an SSL socket if this connection is HTTPS. If this is an HTTP/2 connection the socket may be shared by multiple concurrent calls. -
handshake
Returns the TLS handshake used to establish this connection, or null if the connection is not HTTPS. -
protocol
Protocol protocol()Returns the protocol negotiated by this connection, orProtocol.HTTP_1_1if no protocol has been negotiated. This method returnsProtocol.HTTP_1_1even if the remote peer is usingProtocol.HTTP_1_0.
-