The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Proc::Scoreboard - interface scoreboard class

SYNOPSIS

 use Proc::Scoreboard;
 my $scoreboard = new Proc::Scoreboard ( ... );
 my @idList = $scoreboard->list ();
 $scoreboard->add    ( $id );
 $scoreboard->delete ( $id );
 $scoreboard->modify ( $id, %hash );

DESCRIPTION

Intertface class for scoreboard.

new

The constructor

add

 $sb->add ( $id );

add new board with id $id to scoreboard

delete

 $sb->delete ( $id );

delete board with id $id from scoreboard

modify

 $db->modify ( $id, %hash );

modify board with id $id by passed parameters

list

return list of all known scoreboards id's