cron 0.5.1 cron: ^0.5.1 copied to clipboard
A time-based job scheduler similar to cron. Run tasks periodically at fixed times or intervals.
A cron-like time-based job scheduler for Dart #
Run tasks periodically at fixed times or intervals.
Usage #
A simple usage example:
import 'package:cron/cron.dart';
main() {
final cron = Cron();
cron.schedule(Schedule.parse('*/3 * * * *'), () async {
print('every three minutes');
});
cron.schedule(Schedule.parse('8-11 * * * *'), () async {
print('between every 8 and 11 minutes');
});
}
Links #
- source code
- contributors: Agilord