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.ratpack.sse.client -
-
Uses of HttpClient in ratpack.http.client
Methods in ratpack.http.client that return HttpClient Modifier and Type Method Description HttpClientHttpClient. copyWith(Action<? super HttpClientSpec> action)Create a new HttpClient by appending the provided configuration to this client.static HttpClientHttpClient. httpClient(io.netty.buffer.ByteBufAllocator byteBufAllocator, int maxContentLengthBytes)Deprecated.since 1.4, useof(Action)static HttpClientHttpClient. httpClient(ServerConfig serverConfig, Registry registry)Deprecated.since 1.4, useof(Action)static HttpClientHttpClient. 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.BuilderRatpackRetrofit.Builder. httpClient(Factory<? extends HttpClient> clientFactory)Configures aFactorythat supplies the underlyingHttpClientto 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 ServerSentEventStreamClientServerSentEventStreamClient. of(HttpClient httpClient)Deprecated.since 1.10, useServerSentEventClient. -
Uses of HttpClient in ratpack.sse.client
Methods in ratpack.sse.client with parameters of type HttpClient Modifier and Type Method Description static ServerSentEventClientServerSentEventClient. of(HttpClient httpClient)Creates a client that uses the given HTTP client.
-