Examples of BufferingClientHttpRequestFactory


Examples of org.springframework.http.client.BufferingClientHttpRequestFactory

   * Decorates a request factory to buffer responses so that the responses may be repeatedly read.
   * @param requestFactory the request factory to be decorated for buffering
   * @return a buffering request factory
   */
  public static ClientHttpRequestFactory bufferRequests(ClientHttpRequestFactory requestFactory) {
    return new BufferingClientHttpRequestFactory(requestFactory);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.