| Queue-Leaky documentation | view source | 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 | view source | Contained in the Queue-Leaky distribution. |