MooseX::WithCache::KeyGenerator - KeyGenerator Role


MooseX-WithCache documentation Contained in the MooseX-WithCache distribution.

Index


Code Index:

NAME

Top

MooseX::WithCache::KeyGenerator - KeyGenerator Role

SYNOPSIS

Top

    package MyKeyGenerator;
    use Moose;

    with 'MooseX::WithCache::KeyGenerator';

    no Moose;

    sub generate {
        my $key = ...;
        return $key;
    }


MooseX-WithCache documentation Contained in the MooseX-WithCache distribution.

# $Id: KeyGenerator.pm 21415 2008-10-16 07:50:55Z daisuke $

package MooseX::WithCache::KeyGenerator;
use Moose::Role;

requires 'generate';

no Moose::Role;

1;

__END__