Package com.logicaldoc.core.document
Class TagsProcessor
java.lang.Object
com.logicaldoc.core.task.Task
com.logicaldoc.core.document.TagsProcessor
- All Implemented Interfaces:
Runnable
This task generate all data needed by the tag cloud panel and the tags
drop-down lists.
- Since:
- 4.0
- Author:
- Marco Meschieri - LogicalDOC
-
Field Summary
FieldsFields inherited from class com.logicaldoc.core.task.Task
STATUS_IDLE, STATUS_RUNNING, STATUS_STOPPING
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlong
getSize()
The the total size of the processing(number of units of work)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.void
setDocumentDao
(DocumentDAO documentDao) Methods inherited from class com.logicaldoc.core.task.Task
addTaskListener, getCompletionPercentage, getConfig, getName, getProgress, getReportRecipients, getScheduling, getStatus, interrupt, isInterrupted, isInterruptRequested, isRunning, isSendActivityReport, notifyReport, removeTaskListener, run, save, saveWork, setReportRecipients, setSendActivityReport, setSize
-
Field Details
-
NAME
- See Also:
-
-
Constructor Details
-
TagsProcessor
public TagsProcessor()
-
-
Method Details
-
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
-
getSize
public long getSize()Description copied from class:Task
The the total size of the processing(number of units of work) -
setDocumentDao
-