The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Business::Bof::Server::Schedule -- Schedule schedules to be run

SYNOPSIS

use Business::Bof::Server::Schedule;

my $sch = new Business::Bof::Server::Schedule($db);
##
my $scheduleId = $sch->newSchedule({
   user_id => $user_id,
   class => "$class",
   method => "$method",
   data => $data
});
...
my $schedule = $sch->getSchedule({schedule_id => $scheduleId});
...

DESCRIPTION

Bof::Server::Schedule creates, updates and reads the schedules that Bof (Business Oriented Framework) uses to keep track of its batch processes.

When a client process wants to have a schedule executed at a later time, and when there is a recurring scheduled schedule, this module handles the necessary schedules.

AUTHOR

Kaare Rasmussen <kar at kakidata.dk>