Trigger event at specific time

Hello Team, Hope you are doing well.
Is there any way to trigger any workflow event at fixed time delay like cron job on zeebe or we have to use simple java crons to do the jobs. If yes please share related doc/example.

Till now I am using it by java crons

@manish you can use a Timer Start Event right? (in your start event use the wrench tool to change it to timer start event) you can do that there… but you need to be careful of not to obscure too much the workflow with those definitions, if starting the process every 60 minutes is a business decision, then yes it might go into the workflow definition. If it is a technical reason, I would keep it in Java.

Thanks for your reply. I would prefer java here.

1 Like