Class AbstractJCSWorkerHelper<V>
java.lang.Object
org.apache.commons.jcs3.utils.access.AbstractJCSWorkerHelper<V>
- All Implemented Interfaces:
- JCSWorkerHelper<V>
This is an abstract template for JCSWorkerHelper implementations. it simple has a convenience
 method for setting the finished flag.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanTells us whether or not the work has been completed.voidsetFinished(boolean isFinished) Sets whether or not the work has been done.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.commons.jcs3.utils.access.JCSWorkerHelperdoWork
- 
Constructor Details- 
AbstractJCSWorkerHelperpublic AbstractJCSWorkerHelper()Default
 
- 
- 
Method Details- 
isFinishedDescription copied from interface:JCSWorkerHelperTells us whether or not the work has been completed. This will be called automatically by JCSWorker. You should not call it yourself.- Specified by:
- isFinishedin interface- JCSWorkerHelper<V>
- Returns:
- finished
 
- 
setFinishedDescription copied from interface:JCSWorkerHelperSets whether or not the work has been done.- Specified by:
- setFinishedin interface- JCSWorkerHelper<V>
- Parameters:
- isFinished-
 
 
-