Uses of Interface
org.springframework.web.reactive.function.client.ClientRequest.Builder
Packages that use ClientRequest.Builder
Package
Description
Provides a reactive 
WebClient
 that builds on top of the
 org.springframework.http.client.reactive reactive HTTP adapter layer.- 
Uses of ClientRequest.Builder in org.springframework.web.reactive.function.clientMethods in org.springframework.web.reactive.function.client that return ClientRequest.BuilderModifier and TypeMethodDescriptionSet the attribute with the given name to the given value.ClientRequest.Builder.attributes(Consumer<Map<String, Object>> attributesConsumer) Manipulate the request attributes with the given consumer.ClientRequest.Builder.body(BodyInserter<?, ? super ClientHttpRequest> inserter) Set the body of the request to the givenBodyInserter.<S,P extends Publisher<S>> 
 ClientRequest.BuilderSet the body of the request to the givenPublisherand return it.<S,P extends Publisher<S>> 
 ClientRequest.BuilderClientRequest.Builder.body(P publisher, ParameterizedTypeReference<S> typeReference) Set the body of the request to the givenPublisherand return it.Add a cookie with the given name and value(s).ClientRequest.Builder.cookies(Consumer<MultiValueMap<String, String>> cookiesConsumer) Manipulate this request's cookies with the given consumer.static ClientRequest.BuilderClientRequest.create(HttpMethod method, URI url) Create a request builder with the given HTTP method and url.static ClientRequest.BuilderClientRequest.from(ClientRequest other) Create a builder initialized with the HTTP method, url, headers, cookies, attributes, and body of the given request.Add the given header value(s) under the given name.ClientRequest.Builder.headers(Consumer<HttpHeaders> headersConsumer) Manipulate this request's headers with the given consumer.ClientRequest.Builder.httpRequest(Consumer<ClientHttpRequest> requestConsumer) Callback for access to theClientHttpRequestthat in turn provides access to the native request of the underlying HTTP library.ClientRequest.Builder.method(HttpMethod method) Set the method of the request.static ClientRequest.BuilderClientRequest.method(HttpMethod method, URI url) Deprecated.Set the url of the request.Constructors in org.springframework.web.reactive.function.client with parameters of type ClientRequest.BuilderModifierConstructorDescriptionCreate a new Observation context for HTTP client observations.
ClientRequest.create(HttpMethod, URI)