Package com.logicaldoc.core.task
Class AbstractDocumentProcessor
java.lang.Object
com.logicaldoc.core.task.Task
com.logicaldoc.core.task.AbstractDocumentProcessor
- All Implemented Interfaces:
Runnable
- Direct Known Subclasses:
DigestProcessor
,IndexerTask
A base implementation for those tasks that process documents
- Since:
- 8.8.3
- Author:
- Marco Meschieri - LogicalDOC
-
Field Summary
Fields inherited from class com.logicaldoc.core.task.Task
STATUS_IDLE, STATUS_RUNNING, STATUS_STOPPING
-
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
Concrete implementations must override this method declaring if the task supports multiple instances running concurrently.boolean
Concrete implementations must override this method declaring if the task is indeterminate.prepareReport
(Locale locale) void
runTask()
Methods inherited from class com.logicaldoc.core.task.Task
addTaskListener, getCompletionPercentage, getConfig, getName, getProgress, getReportRecipients, getScheduling, getSize, getStatus, isInterrupted, isInterruptRequested, isRunning, isSendActivityReport, notifyReport, removeTaskListener, run, save, saveWork, setReportRecipients, setSendActivityReport, setSize
-
Method Details
-
runTask
- Throws:
TaskException
-
interrupt
public void interrupt() -
isIndeterminate
public boolean isIndeterminate()Description copied from class:Task
Concrete implementations must override this method declaring if the task is indeterminate. An indeterminate task is not able to compute it's time length- Specified by:
isIndeterminate
in classTask
- Returns:
- true if the task is indeterminate
-
isConcurrent
public boolean isConcurrent()Description copied from class:Task
Concrete implementations must override this method declaring if the task supports multiple instances running concurrently. tHIbernat- Specified by:
isConcurrent
in classTask
- Returns:
- true if the task is concurrent
-
prepareReport
-