如何编写具有初始延迟的 Cron 表达式 - 骡子中的石英?

how to write Cron expression with initial delay - Quartz in mule?

在我的 mule 流中,当前 Quartz 组件中的 cron 表达式是 0/10 * * * * ? 每 10 秒触发一次。我需要修改我的 cron 作业以在 5 秒的初始延迟下工作吗?我如何通过更改 cron 表达式来解决这个问题?

Quartz 组件有一个启动延迟 属性 以毫秒为单位

<quartz:inbound-endpoint  doc:name="Quartz" jobName="StartFlow" startDelay="5000" repeatInterval="0" cronExpression="0/10 * * * * ?" >
<inbound>
            <quartz:inbound-endpoint jobName="myServiceJob" startDelay="5000" repeatInterval="1000">
                <quartz:event-generator-job/>
            </quartz:inbound-endpoint>