The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# $Id$

package Mvalve::State;
use Moose::Role;

requires qw(get set remove incr decr);

no Moose;

1;

__END__

=head1 NAME

Mvalve::State - Role For Keeping Global Mvalve State 

=head1 SYNOPSIS

  package MyState;
  use Moose;

  with 'Mvalve::State';

  no Moose;

  sub get    { ... }
  sub set    { ... }
  sub remove { ... }
  sub incr   { ... }
  sub decr   { ... }

=cut