Uses of Interface
org.apache.http.impl.client.cache.SchedulingStrategy
-
Packages that use SchedulingStrategy Package Description org.apache.http.impl.client.cache This package contains a cache module that can be used for HTTP/1.1 client-side caching. -
-
Uses of SchedulingStrategy in org.apache.http.impl.client.cache
Classes in org.apache.http.impl.client.cache that implement SchedulingStrategy Modifier and Type Class Description class
ExponentialBackOffSchedulingStrategy
An implementation that backs off exponentially based on the number of consecutive failed attempts stored in theAsynchronousValidationRequest
.class
ImmediateSchedulingStrategy
Immediately schedules any incoming validation request.Fields in org.apache.http.impl.client.cache declared as SchedulingStrategy Modifier and Type Field Description private SchedulingStrategy
AsynchronousValidator. schedulingStrategy
private SchedulingStrategy
CachingHttpClientBuilder. schedulingStrategy
Methods in org.apache.http.impl.client.cache that return SchedulingStrategy Modifier and Type Method Description private SchedulingStrategy
CachingHttpClientBuilder. createSchedulingStrategy(CacheConfig config)
Methods in org.apache.http.impl.client.cache with parameters of type SchedulingStrategy Modifier and Type Method Description CachingHttpClientBuilder
CachingHttpClientBuilder. setSchedulingStrategy(SchedulingStrategy schedulingStrategy)
Constructors in org.apache.http.impl.client.cache with parameters of type SchedulingStrategy Constructor Description AsynchronousValidator(SchedulingStrategy schedulingStrategy)
Create AsynchronousValidator which will make revalidation requests using the suppliedSchedulingStrategy
.
-