I am modeling a delivery system and the delivery schedule time is more than one day 24hr. A part of the scheduled time is arranged in the prior day which is shown as a negative number. For instance, -300 means the delivery task to be arranged at 19:00pm on Day-0. 300 means another delivery arranged at 5:00 am on Day-1.
In ideal way, I hope the simulation to be carried out in this form:
@ScheduledMethod(start = -300, interval = 1, priority = 4)
So that I don't have to do any number conversion which will bring a great mess in relation to a lot of schedules.
I tested but it appears that the schedule method needs to start from at least "tick 0". Any solution to this?