NAME
WWW::Bund::LWPIO - Synchronous HTTP backend using LWP::UserAgent
VERSION
version 0.001
SYNOPSIS
use WWW::Bund::LWPIO;
my $io = WWW::Bund::LWPIO->new(timeout => 30);
my $response = $io->call($request);
DESCRIPTION
Default HTTP backend for WWW::Bund. Uses LWP::UserAgent for synchronous HTTP requests. Implements WWW::Bund::Role::IO.
timeout
HTTP request timeout in seconds. Defaults to 30.
ua
LWP::UserAgent instance for making HTTP requests.
call
my $response = $io->call($request);
Execute HTTP request. Takes WWW::Bund::HTTPRequest, returns WWW::Bund::HTTPResponse with decoded content.
SUPPORT
Issues
Please report bugs and feature requests on GitHub at https://github.com/Getty/p5-www-bund/issues.
CONTRIBUTING
Contributions are welcome! Please fork the repository and submit a pull request.
AUTHOR
Torsten Raudssus <torsten@raudssus.de>
COPYRIGHT AND LICENSE
This software is copyright (c) 2026 by Torsten Raudssus.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.