Interface UrlConnectionExpiryCalculator
- 
- All Known Implementing Classes:
- DefaultUrlConnectionExpiryCalculator
 
 public interface UrlConnectionExpiryCalculatorImplemented by objects that can be used as heuristic strategies for calculating the expiry of a cached resource in cases where the server of the resource doesn't provide explicit expiry information.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description longcalculateExpiry(java.net.URLConnection urlConnection)Given a URL connection, returns a calculated heuristic expiry time (in terms of milliseconds since epoch) for the resource.
 
- 
- 
- 
Method Detail- 
calculateExpirylong calculateExpiry(java.net.URLConnection urlConnection) Given a URL connection, returns a calculated heuristic expiry time (in terms of milliseconds since epoch) for the resource.- Parameters:
- urlConnection- the URL connection for the resource
- Returns:
- the expiry for the resource
 
 
- 
 
-