Skip to content

Commit

Permalink
fromatting
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren committed Jan 24, 2025
1 parent 36fe868 commit 5088754
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ public interface HttpClientProvider {
/**
* Returns a {@link HttpClient} to interact with the specified HTTP service.
*
* <p>If the serviceName is a service name without protocol or domain the client will be configured to connect to
* another service deployed with that name on the same Akka project. The runtime will take care of
* routing requests to the service and keeping the data safe by encrypting the connection between services and identifying
* the client as coming from this service.
* <p>If the serviceName is a service name without protocol or domain the client will be
* configured to connect to another service deployed with that name on the same Akka project. The
* runtime will take care of routing requests to the service and keeping the data safe by
* encrypting the connection between services and identifying the client as coming from this
* service.
*
* <p>If it is a full dns name prefixed with "http://" or "https://" it will connect to services available on the
* public internet.
* <p>If it is a full dns name prefixed with "http://" or "https://" it will connect to services
* available on the public internet.
*/
HttpClient httpClientFor(String serviceName);
}

0 comments on commit 5088754

Please sign in to comment.