1docs::api::APR::BucketTUyspeer(3C)ontributed Perl Documednotcast:i:oanpi::APR::BucketType(3)
2
3
4
6 APR::BucketType - Perl API for APR bucket types
7
9 use APR::BucketType ();
10
11 my $name = $b_type->name;
12
14 "APR::BucketType" allows you to query bucket object type properties.
15
17 "APR::BucketType" provides the following functions and/or methods:
18
19 "name"
20
21 Get the name of the bucket type:
22
23 my $bucket_type_name = $b_type->name;
24
25 arg1: $b_type ( "APR::BucketType object" )
26 ret: $bucket_type_name ( string )
27 since: 2.0.00
28
29 Example:
30
31 use APR::Bucket ();
32 use APR::BucketType ();
33 my $eos_b = APR::Bucket::eos_create($ba);
34 my $b_type = $eos_b->type;
35 my $name = $b_type->name;
36
37 Now $name contains 'EOS'.
38
40 mod_perl 2.0 documentation.
41
43 mod_perl 2.0 and its core modules are copyrighted under The Apache
44 Software License, Version 2.0.
45
47 The mod_perl development team and numerous contributors.
48
49
50
51perl v5.8.8 2006-11-19 docs::api::APR::BucketType(3)