Examples of InMemoryHttpCache


Examples of com.gistlabs.mechanize.cache.inMemory.InMemoryHttpCache

*/
public class HttpCacheFilter implements MechanizeChainFilter {
  final HttpCache cache;

  public HttpCacheFilter() {
    this(new InMemoryHttpCache());
  }
View Full Code Here

Examples of com.gistlabs.mechanize.cache.inMemory.InMemoryHttpCache

  public MechanizeAgent() {
    this(buildDefaultHttpClient());
  }

  public MechanizeAgent(final AbstractHttpClient client) {
    this(client, new InMemoryHttpCache());
  }
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.