package KiokuDB::TypeMap::Entry::Compiled; use Moose; no warnings 'recursion'; use namespace::clean -except => 'meta'; has [qw(expand_method collapse_method id_method refresh_method)] => ( isa => "CodeRef|Str", is => "ro", required => 1, ); has class => ( isa => "Str", is => "ro", required => 1, ); has entry => ( does => "KiokuDB::TypeMap::Entry", is => "ro", required => 1, ); __PACKAGE__->meta->make_immutable; __PACKAGE__ __END__ =pod =head1 NAME KiokuDB::TypeMap::Entry::Compiled - Object for storing collapse/expand methods =head1 SYNOPSIS TODO =head1 DESCRIPTION Objects of this class should be returned by L. You probably shouldn't be using this directly; you may just want to consume L or something. =head1 ATTRIBUTES =over 4 =item expand_method Contains a subroutine reference (or a string, denoting a method name). It is called as method on the L. Takes a L as an argument, and should return the expanded object. =item collapse_method Contains a subroutine reference (or a string, denoting a method name). It is called as method on the L. Takes the object to be collapsed as an argument, and should return a L. =item id_method Contains a subroutine reference (or a string, denoting a method name). It is called as method on the L. Takes the object to be collapsed as an argument, and should return an ID for it . =item refresh_method Contains a subroutine reference (or a string, denoting a method name). It is called as method on the L. Takes the object to be refreshed and its corresponding L as arguments. =item class The class for which the methods are being compiled. =item entry The L that created this object. =back =cut