The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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  { ... }