KiokuDB::Role::Upgrade::Handlers::Table - A role for classes


KiokuDB documentation Contained in the KiokuDB distribution.

Index


Code Index:

NAME

Top

KiokuDB::Role::Upgrade::Handlers::Table - A role for classes

SYNOPSIS

Top

    with qw(KiokuDB::Role::Upgrade::Handlers::Table);

    use constant kiokudb_upgrade_handlers_table => {

        # like the individual entries in class_version_table

        "0.01" => "0.02",
        "0.02" => sub {
            ...
        },
    };

DESCRIPTION

Top

This class lets you provide the version handling table as part of the class definition, instead of as arguments to the KiokuDB handle constructor.

See KiokuDB::TypeMap::Entry::MOP more details and KiokuDB::Role::Upgrade::Data for a lower level alternative.


KiokuDB documentation Contained in the KiokuDB distribution.

package KiokuDB::Role::Upgrade::Handlers::Table;
use Moose::Role;

use namespace::clean;

with qw(KiokuDB::Role::Upgrade::Handlers);

requires "kiokudb_upgrade_handlers_table";

no warnings 'uninitialized';

sub kiokudb_upgrade_handler {
    my ( $class, $version ) = @_;

    my $table = $class->kiokudb_upgrade_handlers_table;

    return grep { defined } $table->{$version};
}

# ex: set sw=4 et:

__PACKAGE__

__END__