HTTPCLIENT-975: Javadoc and import cleanup.
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1050622 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
155a9c61c3
commit
1d4465bdb5
|
@ -27,8 +27,6 @@
|
||||||
package org.apache.http.impl.client.cache;
|
package org.apache.http.impl.client.cache;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.apache.http.HttpHost;
|
import org.apache.http.HttpHost;
|
||||||
|
@ -38,7 +36,8 @@ import org.apache.http.client.cache.HttpCacheEntry;
|
||||||
import org.apache.http.protocol.HttpContext;
|
import org.apache.http.protocol.HttpContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class used to represent an asynchronous revalidation event, such as with "stale-while-revalidate"
|
* Class used to represent an asynchronous revalidation event, such as with
|
||||||
|
* "stale-while-revalidate"
|
||||||
*/
|
*/
|
||||||
class AsynchronousValidationRequest implements Runnable {
|
class AsynchronousValidationRequest implements Runnable {
|
||||||
private final AsynchronousValidator parent;
|
private final AsynchronousValidator parent;
|
||||||
|
@ -52,10 +51,8 @@ class AsynchronousValidationRequest implements Runnable {
|
||||||
private final Log log = LogFactory.getLog(getClass());
|
private final Log log = LogFactory.getLog(getClass());
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used internally by {@link AsynchronousValidator} to schedule a revalidation. Once revalidation
|
* Used internally by {@link AsynchronousValidator} to schedule a
|
||||||
* is complete, the {@link Set} bookKeeping will be locked and the {@link String} identifier will be
|
* revalidation.
|
||||||
* removed from it.
|
|
||||||
*
|
|
||||||
* @param cachingClient
|
* @param cachingClient
|
||||||
* @param target
|
* @param target
|
||||||
* @param request
|
* @param request
|
||||||
|
|
Loading…
Reference in New Issue