Interface SchedulingStrategy
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
ExponentialBackOffSchedulingStrategy,ImmediateSchedulingStrategy
public interface SchedulingStrategy extends Closeable
Specifies when revalidation requests are scheduled.- Since:
- 4.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidschedule(AsynchronousValidationRequest revalidationRequest)Schedule anAsynchronousValidationRequestto be executed.
-
-
-
Method Detail
-
schedule
void schedule(AsynchronousValidationRequest revalidationRequest)
Schedule anAsynchronousValidationRequestto be executed.- Parameters:
revalidationRequest- the request to be executed; notnull- Throws:
RejectedExecutionException- if the request could not be scheduled for execution
-
-