KiokuDB::Set::Storage - Role for L<KiokuDB::Set>s that are tied to storage.


KiokuDB documentation Contained in the KiokuDB distribution.

Index


Code Index:

NAME

Top

KiokuDB::Set::Storage - Role for KiokuDB::Sets that are tied to storage.

SYNOPSIS

Top

    # informational role, used internally

DESCRIPTION

Top

This role is informational, and implemented by KiokuDB::Set::Deferred and KiokuDB::Set::Loaded


KiokuDB documentation Contained in the KiokuDB distribution.

#!/usr/bin/perl

package KiokuDB::Set::Storage;
use Moose::Role;

use Set::Object;

use namespace::clean -except => 'meta';

with qw(KiokuDB::Set);

__PACKAGE__

__END__