Jesse Luehrs > KiokuDB > KiokuDB::TypeMap::Entry

Download:
KiokuDB-0.52.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  2
Open  3
View/Report Bugs
Source  

NAME ^

KiokuDB::TypeMap::Entry - Role for KiokuDB::TypeMap entries

SYNOPSIS ^

    package KiokuDB::TypeMap::Foo;
    use Moose;

    with qw(KiokuDB::TypeMap::Entry);

    # or just use KiokuDB::TypeMap::Entry::Std

    sub compile {
        ...
    }

DESCRIPTION ^

This is the role consumed by all typemap entries.

REQUIRED METHODS ^

compile $class

This method is called by KiokuDB::TypeMap::Resolver for a given class, and should return a KiokuDB::TypeMap::Entry::Compiled object for collapsing and expanding the object.

KiokuDB::TypeMap::Entry::Std provides a more concise way of defining typemap entries.

syntax highlighting: