v0.6.2
cron
Ein zeitbasiertes Job-Scheduling-System ähnlich Cron. Führen Sie Aufgaben periodisch zu festgelegten Zeiten oder Intervallen aus.
595Likes 55.60030-Tage-Downloads160Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Ein cron-ähnlicher zeitbasiertes Aufgabenplanungssystem für Dart
^1.1.1^5.0.0^1.25.0^1.3.1Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Run tasks periodically at fixed times or intervals.
A simple usage example:
import 'package:cron/cron.dart';
void 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');
});
}
You can easily create and parse cron format:
import 'package:cron/cron.dart';
void main() {
print(Schedule.parse('3-5 * * * *').minutes); // [3, 4, 5]
print(Schedule(hours: 12, minutes: 25, weekdays: [2, 3])
.toCronString()); // 25 12 * * 2,3
}