Coro-Amazon-SimpleDB

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

    ExtUtils::MakeMaker:  0
requires:
    Amazon::SimpleDB::Client:  0
    AnyEvent:             0
    AnyEvent::HTTP:       0
    Carp:                 0
    common::sense:        0
    Coro:                 0
    Coro::AnyEvent:       0
    EV:                   0
    HTTP::Request:        0
    HTTP::Response:       0
    List::Util:           0
    Moose:                0
    Scalar::Util:         0
    Test::More:           0
no_index:
    directory:
        - t
        - inc
generated_by:       ExtUtils::MakeMaker version 6.56

Makefile.PL  view on Meta::CPAN

        'Test::More'               => 0,
        'Carp'                     => 0,
        'Scalar::Util'             => 0,
        'List::Util'               => 0,
        'Moose'                    => 0,
        'Coro'                     => 0,
        'Coro::AnyEvent'           => 0,
        'AnyEvent'                 => 0,
        'AnyEvent::HTTP'           => 0,
        'EV'                       => 0,
        'HTTP::Request'            => 0,
        'HTTP::Response'           => 0,
        'Amazon::SimpleDB::Client' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Coro-Amazon-SimpleDB-*' },
);

lib/Coro/Amazon/SimpleDB.pm  view on Meta::CPAN

has 'DEBUG' => (is => 'rw', default => !1);

no Moose;



REPLACE_AMAZON_SIMPLEDB_CLIENT_HTTPPOST: {
    package Amazon::SimpleDB::Client;
    use common::sense;
    use AnyEvent::HTTP;
    use HTTP::Request;
    use HTTP::Response;

    # The only mention of a time-out in Amazon::SimpleDB::Client is in
    # reference to a select operation.  I'm using the value from there
    # (5 seconds) as the default time-out for HTTP requests, as it
    # seems reasonable.  The setting is dynamic, but is used prior to
    # putting HTTP request coros into wait state so it should do the
    # expected thing if it's changed.  Caveat emptor.

    our $HTTP_REQUEST_TIMEOUT = 5;



( run in 0.381 second using v1.01-cache-2.11-cpan-de7293f3b23 )