The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Dancer::Plugin::Queue::Role::Queue - Dancer::Plugin::Queue implementation API

VERSION

version 0.002

SYNOPSIS

    package Dancer::Plugin::Queue::MyBackend

    use Moo;
    with 'Dancer::Plugin::Queue::Role::Queue';

    sub add_msg    { ... }

    sub get_msg    { ... }

    sub remove_msg { ... }

DESCRIPTION

This role specifies the API required by queue backend implementations. The following methods must be provided:

  • add_msg

  • get_msg

  • remove_msg

AUTHOR

David Golden <dagolden@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2012 by David Golden.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004