Package jdk.incubator.http
High level HTTP and WebSocket API
Incubating Feature. Will be removed in a future release.
Provides high-level client interfaces to HTTP (versions 1.1 and 2) and WebSocket. The main types defined are:
The API functions asynchronously (using CompletableFuture)
and work is done on the threads supplied by the client's Executor
where practical.
HttpClient also provides a simple synchronous mode, where all
work may be done on the calling thread.
CompletableFutures returned by this API will throw UnsupportedOperationException
for their obtrudeValue
and obtrudeException
methods. Invoking the cancel
method on a CompletableFuture returned by this API will not interrupt
the underlying operation, but may be useful to complete, exceptionally,
dependent stages that have not already completed.
Unless otherwise stated, null parameter values will cause methods
of all classes in this package to throw NullPointerException.
- Since:
- 9
-
Interface Summary Interface Description HttpHeaders A read-only view of a set of HTTP headers.HttpRequest.BodyProcessor A processor which converts high level Java objects into flows ofByteBuffers suitable for sending as request bodies.HttpResponse.BodyHandler<T> A handler for response bodies.HttpResponse.BodyProcessor<T> A processor for response bodies.HttpResponse.MultiProcessor<U,T> A response processor for a HTTP/2 multi response.WebSocket A WebSocket client conforming to RFC 6455.WebSocket.Builder A builder for creatingWebSocketinstances.WebSocket.Listener A listener for events and messages on aWebSocket. -
Class Summary Class Description HttpClient A container for configuration information common to multipleHttpRequests.HttpClient.Builder A builder of immutableHttpClients.HttpRequest Represents one HTTP request which can be sent to a server.HttpRequest.Builder A builder ofHttpRequests.HttpResponse<T> Represents a response to aHttpRequest.MultiMapResult<V> AMapcontaining the result of a HTTP/2 request and multi-response. -
Enum Summary Enum Description HttpClient.Redirect Defines automatic redirection policy.HttpClient.Version The HTTP protocol version.WebSocket.MessagePart A marker used byWebSocket.Listenerin cases where a partial message may be received. -
Exception Summary Exception Description HttpTimeoutException Thrown when a response is not received within a specified time period.WebSocketHandshakeException An exception used to signal the opening handshake failed.