Group
Extension

Matches 2

Dancer2-Plugin-Queue-IronMQ ( M/MI/MIKKOI/Dancer2-Plugin-Queue-IronMQ-0.002.tar.gz, MIKKOI, 2017; MetaCPAN )
Dancer2-Plugin-Queue-IronMQ/i/ironmq.t ( view source; MetaCPAN )
->new('config' => 'ironmq.json');
my $queue = $client->create_and_get_queue( 'name' => $queue_name );

run_me( { 'backend' => 'IronMQ', 'options' => { 'config' => 'ironmq.json' } } );
run_me( {
      
  'backend' => 'IronMQ',
        'options' => {
            'config' => 'ironmq.json',
            'queue' => $queue_name,
        },
    } );
$client->delete_queue( 'name' => $queue_name );

done_tes
Dancer2-Plugin-Queue-IronMQ ( M/MI/MIKKOI/Dancer2-Plugin-Queue-IronMQ-0.002.tar.gz, MIKKOI, 2017; MetaCPAN )
Dancer2-Plugin-Queue-IronMQ/lib/Dancer2/Plugin/Queue/IronMQ.pm ( view source; MetaCPAN )
VERSION = '0.002'; # VERSION:

#pod =pod
#pod
#pod =encoding utf8
#pod
#pod =for stopwords IronMQ JSON config
#pod
#pod =cut

# Dependencies
use Moose;

use IO::Iron::IronMQ::Client 0.12;
use IO::Iron

#pod =attr config
#pod
#pod IronMQ uses a JSON config file to hold the project_id and token,
#pod and other config items if necessary. By default F<iron.json>.
#pod These config items can also be wri
pplied.
#pod
#pod =cut

has config => (
  is      => 'ro',
  isa     => 'Str',
  default => 'iron.json',
);

#pod =attr queue
#pod
#pod Name of the queue. Must be supplied.
#pod
#pod =cut

has queue =

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.