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

XML::RPC::UA::AnyEvent - XML::RPC useragent, using AnyEvent::HTTP

SYNOPSIS

use XML::RPC::Fast;
use XML::RPC::UA::AnyEvent;

my $rpc = XML::RPC::Fast->new(
    $uri,
    ua => XML::RPC::UA::AnyEvent->new(
        ua      => 'YourApp/0.1',
        timeout => 3,
    ),
);

DESCRIPTION

Asyncronous useragent for XML::RPC::Fast. Could be used in any AnyEvent application.

IMPLEMENTED METHODS

new

async = 1

call

SEE ALSO