mod_perl logo
perl icon







previous page: APR::Base64 - Perl API for XXXpage up: mod_perl APIsnext page: APR::Bucket - Perl API for XXX


APR::Brigade - Perl API for XXX











Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern
Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet


Table of Contents

Synopsis

  use APR::Brigade ();

META: to be completed



TOP

Description

META: to be completed



TOP

API

APR::Brigade provides the following functions and/or methods:



TOP

destroy

META: Autogenerated - needs to be reviewed/completed

destroy an entire bucket brigade. This includes destroying all of the buckets within the bucket brigade's bucket list.

  $ret = $b->destroy();


TOP

split

META: Autogenerated - needs to be reviewed/completed

Split a bucket brigade into two, such that the given bucket is the first in the new bucket brigade. This function is useful when a filter wants to pass only the initial part of a brigade to the next filter.

  $ret = $b->split($e);


TOP

concat

META: Autogenerated - needs to be reviewed/completed

  $a->concat($b);


TOP

empty

META: Autogenerated - needs to be reviewed/completed

  $ret = $brigade->empty();


TOP

insert_head

META: Autogenerated - needs to be reviewed/completed

  $brigade->insert_head($bucket);


TOP

insert_tail

META: Autogenerated - needs to be reviewed/completed

  $brigade->insert_tail($bucket);


TOP

See Also

mod_perl 2.0 documentation.



TOP

Copyright

mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 1.1.



TOP

Authors

The mod_perl development team and numerous contributors.







TOP
previous page: APR::Base64 - Perl API for XXXpage up: mod_perl APIsnext page: APR::Bucket - Perl API for XXX