Package org.camunda.bpm.engine.impl.cmd
Class DefaultJobRetryCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmd.JobRetryCmd
-
- org.camunda.bpm.engine.impl.cmd.DefaultJobRetryCmd
-
public class DefaultJobRetryCmd extends JobRetryCmd
- Author:
- Roman Smirnov
-
-
Field Summary
Fields Modifier and Type Field Description static List<String>SUPPORTED_TYPES-
Fields inherited from class org.camunda.bpm.engine.impl.cmd.JobRetryCmd
exception, jobId, serialVersionUID
-
-
Constructor Summary
Constructors Constructor Description DefaultJobRetryCmd(String jobId, Throwable exception)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectexecute(CommandContext commandContext)protected voidexecuteCustomStrategy(CommandContext commandContext, JobEntity job, ActivityImpl activity)protected voidexecuteStandardStrategy(CommandContext commandContext)protected ExecutionEntityfetchExecutionEntity(String executionId)protected ActivityImplgetCurrentActivity(CommandContext commandContext, JobEntity job)protected DurationHelpergetDurationHelper(String failedJobRetryTimeCycle)protected FailedJobRetryConfigurationgetFailedJobRetryConfiguration(JobEntity job, ActivityImpl activity)protected StringgetFailedJobRetryTimeCycle(JobEntity job, Expression expression)protected voidinitializeRetries(JobEntity job, int retries)protected booleanisFirstJobExecution(JobEntity job)-
Methods inherited from class org.camunda.bpm.engine.impl.cmd.JobRetryCmd
decrementRetries, getExceptionStacktrace, getJob, logException, notifyAcquisition, shouldDecrementRetriesFor
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.camunda.bpm.engine.impl.interceptor.Command
isRetryable
-
-
-
-
Method Detail
-
execute
public Object execute(CommandContext commandContext)
-
executeStandardStrategy
protected void executeStandardStrategy(CommandContext commandContext)
-
executeCustomStrategy
protected void executeCustomStrategy(CommandContext commandContext, JobEntity job, ActivityImpl activity) throws Exception
- Throws:
Exception
-
getCurrentActivity
protected ActivityImpl getCurrentActivity(CommandContext commandContext, JobEntity job)
-
fetchExecutionEntity
protected ExecutionEntity fetchExecutionEntity(String executionId)
-
getFailedJobRetryConfiguration
protected FailedJobRetryConfiguration getFailedJobRetryConfiguration(JobEntity job, ActivityImpl activity)
-
getFailedJobRetryTimeCycle
protected String getFailedJobRetryTimeCycle(JobEntity job, Expression expression)
-
getDurationHelper
protected DurationHelper getDurationHelper(String failedJobRetryTimeCycle) throws Exception
- Throws:
Exception
-
isFirstJobExecution
protected boolean isFirstJobExecution(JobEntity job)
-
initializeRetries
protected void initializeRetries(JobEntity job, int retries)
-
-