Skip to content

Commit

Permalink
Restate the feature highlight about Synchronous approach changing it …
Browse files Browse the repository at this point in the history
…to Blocking Approach.
  • Loading branch information
klustria committed Oct 18, 2023
1 parent f83bddb commit 9422d21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/se/webclient.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ WebClient is an HTTP client for Helidon SE. It can be used to send requests and
Helidon WebClient provides the following features:
* *Synchronous approach* +
The Webclient uses the blocking approach to synchronously process a request and its correspond response. For HTTP/1.1, it runs in the thread of the user. For HTTP/2, virtual thread is employed to manage the connection.
* *Blocking approach* +
The Webclient uses the blocking approach to synchronously process a request and its correspond response. Both `HTTP/1.1` and `HTTP/2` request and response will run in the thread of the user. Additionally, for `HTTP/2`, virtual thread is employed to manage the connection.
* *Builder-like setup and execution* +
Creates every client and request as a builder pattern. This improves readability and code maintenance.
Expand Down

0 comments on commit 9422d21

Please sign in to comment.