![]() |
Home / Documentation / 2.0 / API / | |||
| APR::Bucket - Perl API for XXX | ||||
|
|
||
eos_createMETA: Autogenerated - needs to be reviewed/completed
Each bucket type foo has two initialization functions: apr_bucket_foo_make which sets up some already-allocated memory as a bucket of type foo; and apr_bucket_foo_create which allocates memory for the bucket, calls apr_bucket_make_foo, and initializes the bucket's list pointers. The apr_bucket_foo_make functions are used inside the bucket code to change the type of buckets in place; other code should call apr_bucket_foo_create. All the initialization functions change nothing if they fail. *
Create an End of Stream bucket. This indicates that there is no more data coming from down the filter stack. All filters should flush at this point.
$ret = $list->eos_create();
$list (APR::BucketAlloc)
The freelist from which this bucket should be allocated
$ret (APR::Bucket)
The new bucket, or NULL if allocation failed
flush_createMETA: Autogenerated - needs to be reviewed/completed
Create a flush bucket. This indicates that filters should flush their data. There is no guarantee that they will flush it, but this is the best we can do.
$ret = $list->flush_create();
$list (APR::BucketAlloc)
The freelist from which this bucket should be allocated
$ret (APR::Bucket)
The new bucket, or NULL if allocation failed
insert_afterMETA: Autogenerated - needs to be reviewed/completed
$a->insert_after($b);
$a (APR::Bucket)
$b (APR::Bucket)
insert_beforeMETA: Autogenerated - needs to be reviewed/completed
$a->insert_before($b);
$a (APR::Bucket)
$b (APR::Bucket)
is_eosMETA: Autogenerated - needs to be reviewed/completed
$ret = $bucket->is_eos();
$bucket (APR::Bucket)
$ret (integer)
is_flushMETA: Autogenerated - needs to be reviewed/completed
$ret = $bucket->is_flush();
$bucket (APR::Bucket)
$ret (integer)
removeMETA: Autogenerated - needs to be reviewed/completed
$bucket->remove();
$bucket (APR::Bucket)
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 1.1.
|
|