NAME
DateTime::Event::MultiCron - Perl extension for DateTime::Event::Cron
SYNOPSIS
use DateTime::Event::MultiCron;
my $dts=DateTime::Event::MultiCron->from_multicron('*/5 * * * *','*/2 * * * 6');
my $iter=$dts->iterator(after=>DateTime->now());
while (1) {
my $next = $iter->next;
print $next->datetime,"\n";
}
DESCRIPTION
This module is an extension to DateTime::Event::Cron. It only adds the method from_multicron.
- from_multicron
-
From multicron gets several schedule definition on the cron format, and returns a DateTime::Set for all that schedules. See example in the SYNOPSIS.
Stub documentation for DateTime::Event::MultiCron, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited.
Blah blah blah.
SEE ALSO
L<DateTime::Event::Cron>
AUTHOR
Marco Neves, <neves@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2007 by Marco Neves
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.