1Catalyst::ActionChain(3U)ser Contributed Perl DocumentatiCoantalyst::ActionChain(3)
2
3
4
6 Catalyst::ActionChain - Chain of Catalyst Actions
7
9 See Catalyst::Manual::Intro for more info about Chained actions.
10
12 This class represents a chain of Catalyst Actions. It behaves exactly
13 like the action at the *end* of the chain except on dispatch it will
14 execute all the actions in the chain in order.
15
17 chain
18 Accessor for the action chain; will be an arrayref of the
19 Catalyst::Action objects encapsulated by this chain.
20
21 dispatch( $c )
22 Dispatch this action chain against a context; will dispatch the
23 encapsulated actions in order.
24
25 from_chain( \@actions )
26 Takes a list of Catalyst::Action objects and constructs and returns a
27 Catalyst::ActionChain object representing a chain of these actions
28
29 number_of_captures
30 Returns the total number of captures for the entire chain of actions.
31
32 match_captures
33 Match all the captures that this chain encloses, if any.
34
35 scheme
36 Any defined scheme for the actionchain
37
38 meta
39 Provided by Moose
40
42 Catalyst Contributors, see Catalyst.pm
43
45 This library is free software. You can redistribute it and/or modify it
46 under the same terms as Perl itself.
47
48
49
50perl v5.32.0 2020-07-28 Catalyst::ActionChain(3)