1Pipeline::Production(3)User Contributed Perl DocumentatioPnipeline::Production(3)
2
3
4
6 Pipeline::Production - wrapper for production objects
7
9 use Pipeline::Production;
10
11 my $pp = Pipeline::Production->new();
12
13 $pp->contents( $object );
14 my $production = $pp->contents();
15
17 The "Pipeline::Production" class acts as a wrapper around any scalar
18 (and therfore object, or reference) that a Pipeline is to consider as a
19 production. A production object will terminate the pipeline apon
20 receipt and cause the cleanup segments to be executed.
21
23 new()
24 The "new" method constructs a fresh Pipeline::Production object and
25 returns it. In the process it calls the init() method.
26
27 init()
28 The "init" method is called at construction time to perform any
29 pre-use initialization on the object.
30
31 contents( [ SCALAR ] )
32 The "contents" method gets or sets the contents of the production,
33 ie, the actual production itself.
34
35 contains( [ SCALAR ] )
36 A synonym for "contents"
37
39 "Pipeline"
40
42 James A. Duncan <jduncan@fotango.com>
43
45 Copyright 2003 Fotango Ltd. All Rights Reserved.
46
47 This software is released under the same terms as Perl itself.
48
49
50
51perl v5.38.0 2023-07-21 Pipeline::Production(3)