本文整理汇总了Java中org.activiti.engine.impl.persistence.entity.JobEntity.setRetries方法的典型用法代码示例。如果您正苦于以下问题:Java JobEntity.setRetries方法的具体用法?Java JobEntity.setRetries怎么用?Java JobEntity.setRetries使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.activiti.engine.impl.persistence.entity.JobEntity
的用法示例。
在下文中一共展示了JobEntity.setRetries方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import org.activiti.engine.impl.persistence.entity.JobEntity; //导入方法依赖的package包/类
@Override
public Void execute(CommandContext commandContext) {
JobEntity job = commandContext
.getJobEntityManager()
.findJobById(jobId);
if (job != null) {
job.setRetries(retries);
if (commandContext.getEventDispatcher().isEnabled()) {
commandContext.getEventDispatcher().dispatchEvent(
ActivitiEventBuilder.createEntityEvent(FlowableEngineEventType.ENTITY_UPDATED, job));
}
} else {
throw new ActivitiObjectNotFoundException("No job found with id '" + jobId + "'.", Job.class);
}
return null;
}
示例2: execute
import org.activiti.engine.impl.persistence.entity.JobEntity; //导入方法依赖的package包/类
public Object execute(CommandContext commandContext) {
JobEntity job = Context
.getCommandContext()
.getJobManager()
.findJobById(jobId);
job.setRetries(job.getRetries() - 1);
job.setLockOwner(null);
job.setLockExpirationTime(null);
if(exception != null) {
job.setExceptionMessage(exception.getMessage());
job.setExceptionStacktrace(getExceptionStacktrace());
}
JobExecutor jobExecutor = Context.getProcessEngineConfiguration().getJobExecutor();
MessageAddedNotification messageAddedNotification = new MessageAddedNotification(jobExecutor);
TransactionContext transactionContext = commandContext.getTransactionContext();
transactionContext.addTransactionListener(TransactionState.COMMITTED, messageAddedNotification);
return null;
}
示例3: execute
import org.activiti.engine.impl.persistence.entity.JobEntity; //导入方法依赖的package包/类
public Object execute(CommandContext commandContext) {
JobEntity job = Context
.getCommandContext()
.getJobEntityManager()
.findJobById(jobId);
job.setRetries(job.getRetries() - 1);
job.setLockOwner(null);
job.setLockExpirationTime(null);
if(exception != null) {
job.setExceptionMessage(exception.getMessage());
job.setExceptionStacktrace(getExceptionStacktrace());
}
JobExecutor jobExecutor = Context.getProcessEngineConfiguration().getJobExecutor();
MessageAddedNotification messageAddedNotification = new MessageAddedNotification(jobExecutor);
TransactionContext transactionContext = commandContext.getTransactionContext();
transactionContext.addTransactionListener(TransactionState.COMMITTED, messageAddedNotification);
return null;
}
示例4: execute
import org.activiti.engine.impl.persistence.entity.JobEntity; //导入方法依赖的package包/类
@Override
public Object execute(CommandContext commandContext) {
JobEntity job = Context.getCommandContext().getJobEntityManager().findJobById(jobId);
job.setRetries(NO_RETRIES);
job.setLockOwner(null);
job.setLockExpirationTime(null);
if (exception != null) {
job.setExceptionMessage(exception.getMessage());
job.setExceptionStacktrace(getExceptionStacktrace());
}
addTransactionListener(commandContext);
return null;
}
示例5: execute
import org.activiti.engine.impl.persistence.entity.JobEntity; //导入方法依赖的package包/类
public Void execute(CommandContext commandContext) {
JobEntity job = commandContext
.getJobManager()
.findJobById(jobId);
if (job != null) {
job.setRetries(retries);
} else {
throw new ActivitiException("No job found with id '" + jobId + "'.");
}
return null;
}
示例6: updateNumberOfRetries
import org.activiti.engine.impl.persistence.entity.JobEntity; //导入方法依赖的package包/类
private void updateNumberOfRetries(JobEntity job) {
if (maxNumberOfRetries == -1) {
job.setLockOwner(LOCK_OWNER);
job.setLockExpirationTime(calculateDueDate());
return; /* always retry without counting */
}
int realUpperBound = maxNumberOfRetries + JobEntity.DEFAULT_RETRIES;
if (job.getRetries() >= realUpperBound) {
LOG.warn("Job {} from process {} has no more retries left. The process will block and may " +
"require human intervention.", job.getId(), job.getProcessInstanceId());
job.setRetries(0); /* stop retrying this job */
job.setLockOwner(null);
} else {
final Date newDate = calculateDueDate();
LOG.info("Scheduling job {} from process {} to be retried at {}. Try {}/{}",
new Object[]{job.getId(), job.getProcessInstanceId(), newDate,
job.getRetries() - JobEntity.DEFAULT_RETRIES, maxNumberOfRetries});
/* I've tried to use job.setDuedate() but it doesn't work as expected */
job.setLockOwner(LOCK_OWNER);
job.setLockExpirationTime(newDate);
job.setRetries(job.getRetries() + 1);
}
}
示例7: execute
import org.activiti.engine.impl.persistence.entity.JobEntity; //导入方法依赖的package包/类
public Void execute(CommandContext commandContext) {
JobEntity job = commandContext
.getJobEntityManager()
.findJobById(jobId);
if (job != null) {
job.setRetries(retries);
} else {
throw new ActivitiObjectNotFoundException("No job found with id '" + jobId + "'.", Job.class);
}
return null;
}