Queue::Leaky::Driver - Queue Interface Role


Queue-Leaky documentation Contained in the Queue-Leaky distribution.

Index


Code 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 Contained in the Queue-Leaky distribution.

package Queue::Leaky::Driver;

use Moose::Role;

requires qw(next fetch insert clear);

no Moose;

1;

__END__