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


Plack-App-Proxy documentation Contained in the Plack-App-Proxy distribution.

Index


Code Index:

NAME

Top

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

SYNOPSIS

Top

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

DESCRIPTION

Top

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

AUTHOR

Top

Lee Aylward

Masahiro Honma

Tatsuhiko Miyagawa

LICENSE

Top

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


Plack-App-Proxy documentation Contained in the Plack-App-Proxy distribution.

package Plack::App::Proxy::Backend;

use strict;
use parent 'Plack::Component';
use Plack::Util::Accessor qw/url req headers method content response_headers/;

1;

__END__