1docs::api::APR::BucketTUyspeer(3C)ontributed Perl Documednotcast:i:oanpi::APR::BucketType(3)
2
3
4

NAME

6       APR::BucketType - Perl API for APR bucket types
7

Synopsis

9         use APR::BucketType ();
10
11         my $name = $b_type->name;
12

Description

14       "APR::BucketType" allows you to query bucket object type properties.
15

API

17       "APR::BucketType" provides the following functions and/or methods:
18
19   "name"
20       Get the name of the bucket type:
21
22         my $bucket_type_name = $b_type->name;
23
24       arg1: $b_type ( "APR::BucketType object" )
25       ret: $bucket_type_name ( string )
26       since: 2.0.00
27
28       Example:
29
30         use APR::Bucket ();
31         use APR::BucketType ();
32         my $eos_b = APR::Bucket::eos_create($ba);
33         my $b_type = $eos_b->type;
34         my $name = $b_type->name;
35
36       Now $name contains 'EOS'.
37

See Also

39       mod_perl 2.0 documentation.
40
42       mod_perl 2.0 and its core modules are copyrighted under The Apache
43       Software License, Version 2.0.
44

Authors

46       The mod_perl development team and numerous contributors.
47
48
49
50perl v5.34.0                      2021-07-22     docs::api::APR::BucketType(3)
Impressum