There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

Queue::Leaky::Driver - Queue Interface Role

SYNOPSIS

package MyQueue;
use Moose;

with 'Queue::Leaky::Driver';

no Moose;

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