Scheduled events #26
Labels
No labels
Critical Bug
Documentation
Feature
Small bug
tests
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
babka/activitycolander#26
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Once #25 is collecting stats, it would be nice to process this data on a regular basis.
For example, an email that goes out on regular intervals providing basic stats.
To do this, we need an abstraction around scheduling events. I haven't found a higher level of abstraction than
ngx.timer.everybut if we do, then we can use it, or we can write something very lightweight that provides some similar result- not all the way to cronjob level sophistication, but maybe something lighter.An alternative might be to use
ngx.timer.at, where the first timer is calculated, and then on process completion, a newnginx.timer.atis created.