Package org.springframework.http.client

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

Related Classes of org.springframework.http.client.BufferingClientHttpRequestFactory

Copyright © 2018 www.massapicom. 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.