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::Task -- Handle Bof task creation, updating and reading

SYNOPSIS

use Business::Bof::Server::Task;

my $task = new Business::Bof::Server::Task($db);
my $taskId = $fw -> newTask({
   user_id => $user_id,
   class => $class,
   method => $method,
   data => $data,
   status => 100
});
...
my $task = getTask({task_id => $taskId});
...

DESCRIPTION

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

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

AUTHOR

Kaare Rasmussen <kar at kakidata.dk>