Queue::Leaky::Driver - Queue Interface Role


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

Index


NAME

Top

Queue::Leaky::Driver - Queue Interface Role

SYNOPSIS

Top

  package MyQueue;
  use Moose;

  with 'Queue::Leaky::Driver';

  no Moose;

  sub next   { ... }
  sub fetch  { ... }
  sub insert { ... }
  sub clear  { ... }


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