From 9422d215570f2c3cff0cc995ae34184ef233b787 Mon Sep 17 00:00:00 2001 From: Keith Lustria Date: Wed, 18 Oct 2023 08:52:38 -0700 Subject: [PATCH] Restate the feature highlight about Synchronous approach changing it to Blocking Approach. --- docs/se/webclient.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/se/webclient.adoc b/docs/se/webclient.adoc index a4c17daaf1d..f02114fd004 100644 --- a/docs/se/webclient.adoc +++ b/docs/se/webclient.adoc @@ -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.