public abstract class AbstractRenditionBuilderWork extends TransientStoreWork
Work.Progress, Work.State| Modifier and Type | Field and Description |
|---|---|
static String |
CATEGORY |
protected DocumentRef |
docRef |
protected String |
key |
protected static org.apache.commons.logging.Log |
log |
protected String |
renditionName |
protected String |
repositoryName |
entryKey, KEY_SUFFIX, STORE_NAMEcallerThread, completionTime, docId, docIds, id, isTree, loginContext, originatingUsername, progress, RANDOM, schedulePath, schedulingTime, session, startTime, state, status, suspended, suspending| Constructor and Description |
|---|
AbstractRenditionBuilderWork(String key,
DocumentModel doc,
RenditionDefinition def) |
| Modifier and Type | Method and Description |
|---|---|
protected String |
buildId(DocumentModel doc,
RenditionDefinition def) |
void |
cleanUp(boolean ok,
Exception e)
This method is called after
AbstractWork.work() is done in a finally block, whether work completed normally or was in
error or was interrupted. |
protected abstract List<Blob> |
doComputeRendition(CoreSession session,
DocumentModel doc,
RenditionDefinition def)
Does the actual Rendition Computation : this code will be called from inside an Asynchronous Work
|
String |
getCategory()
Gets the category for this work.
|
protected String |
getSourceDocumentModificationDate(DocumentModel doc) |
String |
getTitle()
Gets a human-readable name for this work instance.
|
protected String |
getTransientStoreName() |
void |
work()
This method should implement the actual work done by the
Work instance. |
computeEntryKey, computeEntryKey, containsBlobHolder, getBlobHolder, getEntryKey, getStore, putBlobHolder, putBlobHolder, removeBlobHoldercloseSession, commitOrRollbackTransaction, equals, getCompletionTime, getDocument, getDocuments, getId, getOriginatingUsername, getPartitionKey, getProgress, getRetryCount, getSchedulePath, getSchedulingTime, getStartTime, getStatus, getWorkInstanceState, hashCode, initSession, initSession, isDocumentTree, isSuspending, isWorkInstanceSuspended, newDocumentLocation, openSystemSession, openUserSession, run, runWorkWithTransaction, setCompletionTime, setDocument, setDocument, setDocuments, setOriginatingUsername, setProgress, setSchedulePath, setStartTime, setStatus, setWorkInstanceState, setWorkInstanceSuspending, startTransaction, suspended, toStringprotected final DocumentRef docRef
protected final String repositoryName
protected final String renditionName
protected static org.apache.commons.logging.Log log
public static final String CATEGORY
public AbstractRenditionBuilderWork(String key, DocumentModel doc, RenditionDefinition def)
protected String buildId(DocumentModel doc, RenditionDefinition def)
public String getTitle()
Workpublic String getCategory()
WorkUsed to choose an execution queue.
getCategory in interface WorkgetCategory in class AbstractWorknull for the defaultprotected String getTransientStoreName()
public void work()
WorkWork instance.
It should periodically update its progress through Work.setProgress(org.nuxeo.ecm.core.work.api.Work.Progress).
To allow for suspension by the WorkManager, it should periodically call Work.isSuspending(), and if
true call Work.suspended() return early with saved state data.
Clean up can by implemented by #cleanUp().
work in interface Workwork in class AbstractWorkWork.isSuspending(),
Work.suspended(),
Work.cleanUp(boolean, java.lang.Exception)public void cleanUp(boolean ok, Exception e)
AbstractWorkAbstractWork.work() is done in a finally block, whether work completed normally or was in
error or was interrupted.cleanUp in interface WorkcleanUp in class AbstractWorkok - true if the work completed normallye - the exception, if availableprotected String getSourceDocumentModificationDate(DocumentModel doc)
protected abstract List<Blob> doComputeRendition(CoreSession session, DocumentModel doc, RenditionDefinition def)
session - doc - def - Copyright © 2018 Nuxeo. All rights reserved.