Mvalve::State - Role For Keeping Global Mvalve State


Mvalve documentation  | view source Contained in the Mvalve distribution.

Index


NAME

Top

Mvalve::State - Role For Keeping Global Mvalve State

SYNOPSIS

Top

  package MyState;
  use Moose;

  with 'Mvalve::State';

  no Moose;

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


Mvalve documentation  | view source Contained in the Mvalve distribution.