8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a795a7e + 042a0f7 commit 27b7183Copy full SHA for 27b7183
Chapter13/README.md
@@ -1,7 +1,7 @@
1
# The HTTP Client and WebSocket APIs
2
This chapter includes 20 problems that are meant to cover the HTTP Client and WebSocket APIs.
3
4
-Do you remember HttpUrlConnection? Well, JDK 11 comes with the HTTP Client API as a reinvention of HttpUrlConnection.
+Do you remember `HttpUrlConnection`? Well, JDK 11 comes with the HTTP Client API as a reinvention of `HttpUrlConnection`.
5
The HTTP Client API is easy to use and supports HTTP/2 (default) and HTTP/1.1. For backward compatibility, the HTTP Client API
6
will automatically downgrade from HTTP/2 to HTTP 1.1 when the server doesn't support HTTP/2. Moreover, the HTTP Client API
7
supports synchronous and asynchronous programming models and relies on streams to transfer data (reactive streams). It also
0 commit comments