You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.
请问如何执行瞬时任务,比如:订单在7天后关闭。
比如quartz可以设置startData来设置一次性任务。
Trigger trigger = newTrigger()
.startAt(startDate)
.withIdentity(triggerKey)
.withSchedule(SimpleScheduleBuilder
.simpleSchedule()
.withMisfireHandlingInstructionFireNow())
.build();
The text was updated successfully, but these errors were encountered: