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

NAME

Net::HTTP2::Client - HTTP/2 client base class

SYNOPSIS

    use Net::HTTP2::Client::Mojo;

    Net::HTTP2::Client::Mojo->new()->request(
        GET => 'https://perl.com',
    )->then(
        sub ($response) {
            # Handle the Net::HTTP2::Response
        }
    )->wait();

Net::HTTP2::Client::AnyEvent and Net::HTTP2::Client::IOAsync exist as well for AnyEvent and IO::Async, respectively.

DESCRIPTION

This class implements base functionality for an HTTP/2 client in Perl.