Uses of Interface
ratpack.http.client.HttpClient
-
Packages that use HttpClient Package Description ratpack.http.client The HTTP client.ratpack.retrofit Integration with Retrofit.ratpack.sse Support for Server Sent Events. -
-
Uses of HttpClient in ratpack.http.client
Methods in ratpack.http.client that return HttpClient Modifier and Type Method Description HttpClient
HttpClient. copyWith(Action<? super HttpClientSpec> action)
Create a new HttpClient by appending the provided configuration to this client.static HttpClient
HttpClient. httpClient(io.netty.buffer.ByteBufAllocator byteBufAllocator, int maxContentLengthBytes)
Deprecated.since 1.4, useof(Action)
static HttpClient
HttpClient. httpClient(ServerConfig serverConfig, Registry registry)
Deprecated.since 1.4, useof(Action)
static HttpClient
HttpClient. of(Action<? super HttpClientSpec> action)
Creates a new HTTP client. -
Uses of HttpClient in ratpack.retrofit
Method parameters in ratpack.retrofit with type arguments of type HttpClient Modifier and Type Method Description RatpackRetrofit.Builder
RatpackRetrofit.Builder. httpClient(Factory<? extends HttpClient> clientFactory)
Configures aFactory
that supplies the underlyingHttpClient
to back client interfaces generated from the return ofRatpackRetrofit.Builder.retrofit()
-
Uses of HttpClient in ratpack.sse
Methods in ratpack.sse with parameters of type HttpClient Modifier and Type Method Description static ServerSentEventStreamClient
ServerSentEventStreamClient. of(HttpClient httpClient)
Creates an SSE client.
-