There are several options for deferred and repetitive tasks in Dart, but I don’t know about the Quartz port for Dart (more ... :)
Here is the basic information:
Timer - just run the function after some delayFuture - More robust, compound functions that return "future" valuesStream- reliable, composite streams of events. May be periodic.
, Stream over Timer. , (Dart ).
Stream :
import 'dart:async';
main() {
var stream = new Stream.periodic(const Duration(hours: 1), (count) {
});
stream.listen((result) {
});
}
. . , .