I want to schedule a task to execute on a schedule that doesn’t have a deterministic recurrence. Specifically I want to fire a task X days after the previous occurrence. For example, the schedule would be:
- Day 0
- 2 days later
- 3 days from #2
- 2 days from #3
- 3 days from #4
…and so on…recurring every 2 and 3 days respectively.
How would I implement this?