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

NAME

Plack::App::Proxy::Backend - pluggable backend for making the actual HTTP request

SYNOPSIS

  package Plack::App::Proxy::Backend::foo;
  use parent 'Plack::App::Proxy::Backend';
  sub call {
      my $self = shift;
      my ($env) = @_;
      # ...
  }

DESCRIPTION

This is a base class for HTTP backends for Plack::App::Proxy.

AUTHOR

Lee Aylward

Masahiro Honma

Tatsuhiko Miyagawa

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.