| Queue-Leaky documentation | Contained in the Queue-Leaky distribution. |
Queue::Leaky::Driver - Queue Interface Role
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__