There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

Net::HTTP2::Client::Connection::AnyEvent

SYNOPSIS

my $cv = AnyEvent->condvar();

my $h2 = Net::HTTP2::Client::Connection::AnyEvent->new("perl.org");

$h2->request("GET", "/")->then(
    sub ($resp) {
        print $resp->content();
    },
)->finally($cv);

$cv->recv();

DESCRIPTION

This class extends Net::HTTP2::Client::Connection to work with AnyEvent.

It requires that Net::SSLeay support ALPN.