Package rabbit.proxy

Examples of rabbit.proxy.PartialCacher


             String entryName,
             Cache<HttpHeader, HttpHeader> cache)
  throws IOException {
  if (oldEntry != null) {
      String oldName = cache.getEntryName (oldEntry);
      PartialCacher pc =
    new PartialCacher (getLogger (), oldName, response);
      cacheChannel = pc.getChannel ();
      updateRange (oldEntry, response, pc, cache);
      return;
  } else {
      entry.setDataHook (response);
      PartialCacher pc =
    new PartialCacher (getLogger (), entryName, response);
      cacheChannel = pc.getChannel ();
  }
    }
View Full Code Here

TOP

Related Classes of rabbit.proxy.PartialCacher

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.