如何设置camunda timerEntity的repeat属性

时间:2015-08-24 20:39:43

标签: camunda

我正在使用Command为camunda JobExecutor创建自定义重复作业。

api是

timerEntity.setRepeat(String repeat).

我尝试过ISO

timerEntity.setRepeat("PT25S");

和cron

timerEntity("*/25 * * * * *");

但在这两种情况下我都得到一个解析异常:

WARNING: Exception while excuting job 'TimerEntity[repeat*/15 * * * * *, id=1, revision=1, duedate=Mon Aug 24 22:34:46 CEST 2015, lockOwner=null, lockExpirationTime=null, executionId=null, processInstanceId=null, isExclusive=true, retries=3, jobHandlerType=DmnDirectoryWatcherJobHandler, jobHandlerConfiguration=null, exceptionByteArray=null, exceptionByteArrayId=null, exceptionMessage=null, deploymentId=null]':
Failed to parse cron expression: */15 * * * * *

不幸的是,该方法没有适合的javaDoc。我必须以哪种格式提供重复字符串,以便在引擎运行时每25秒实现一次自动重新安排?

0 个答案:

没有答案