All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.web.service.invoker.ReactorHttpExchangeAdapter Maven / Gradle / Ivy

There is a newer version: 6.1.10
Show newest version
/*
 * Copyright 2002-2023 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.web.service.invoker;

import java.time.Duration;

import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

import org.springframework.core.ParameterizedTypeReference;
import org.springframework.core.ReactiveAdapterRegistry;
import org.springframework.http.HttpHeaders;
import org.springframework.http.ResponseEntity;
import org.springframework.lang.Nullable;

/**
 * Contract to abstract a reactive, HTTP client from
 * {@linkplain HttpServiceProxyFactory} and make it pluggable.
 *
 * @author Rossen Stoyanchev
 * @since 6.1
 */
public interface ReactorHttpExchangeAdapter extends HttpExchangeAdapter {

	/**
	 * Return the configured {@link ReactiveAdapterRegistry}.
	 */
	ReactiveAdapterRegistry getReactiveAdapterRegistry();

	/**
	 * Return the configured time to block for the response from an HTTP service
	 * method with a synchronous (blocking) method signature.
	 *
	 * 

By default, not set in which case the behavior depends on connection * and request timeout settings of the underlying HTTP client. We recommend * configuring timeout values directly on the underlying HTTP client, which * provides more control over such settings. */ @Nullable Duration getBlockTimeout(); /** * Perform the given request, and release the response content, if any. * @param requestValues the request to perform * @return {@code Mono} that completes when the request is fully executed * and the response content is released. */ Mono exchangeForMono(HttpRequestValues requestValues); /** * Perform the given request, release the response content, and return the * response headers. * @param requestValues the request to perform * @return {@code Mono} that returns the response headers the request is * fully executed and the response content released. */ Mono exchangeForHeadersMono(HttpRequestValues requestValues); /** * Perform the given request and decode the response content to the given type. * @param requestValues the request to perform * @param bodyType the target type to decode to * @return {@code Mono} that returns the decoded response. * @param the type the response is decoded to */ Mono exchangeForBodyMono(HttpRequestValues requestValues, ParameterizedTypeReference bodyType); /** * Perform the given request and decode the response content to a stream with * elements of the given type. * @param requestValues the request to perform * @param bodyType the target stream element type to decode to * @return {@code Flux} with decoded stream elements. * @param the type the response is decoded to */ Flux exchangeForBodyFlux(HttpRequestValues requestValues, ParameterizedTypeReference bodyType); /** * Variant of {@link #exchangeForMono(HttpRequestValues)} with additional * access to the response status and headers. */ Mono> exchangeForBodilessEntityMono(HttpRequestValues requestValues); /** * Variant of {@link #exchangeForBodyMono(HttpRequestValues, ParameterizedTypeReference)} * with additional access to the response status and headers. */ Mono> exchangeForEntityMono( HttpRequestValues requestValues, ParameterizedTypeReference bodyType); /** * Variant of {@link #exchangeForBodyFlux(HttpRequestValues, ParameterizedTypeReference)} * with additional access to the response status and headers. */ Mono>> exchangeForEntityFlux( HttpRequestValues requestValues, ParameterizedTypeReference bodyType); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy