Queue::Leaky::State - Role For Keeping Global State


Queue-Leaky documentation  | view source Contained in the Queue-Leaky distribution.

Index


NAME

Top

Queue::Leaky::State - Role For Keeping Global State

SYNOPSIS

Top

  package MyState;
  use Moose;

  with 'Queue::Leaky::State';

  no Moose;

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


Queue-Leaky documentation  | view source Contained in the Queue-Leaky distribution.