1Workflow::Action::Null(U3s)er Contributed Perl DocumentatWioornkflow::Action::Null(3)
2
3
4
6 Workflow::Action::Null - Workflow action for the terminally lazy
7
9 This documentation describes version 1.51 of this package
10
12 # in workflow.xml...
13 <state name="some state">
14 <action name="null" />
15 ...
16
17 # in workflow_action.xml...
18 <action name="null" class="Workflow::Action::Null" />
19
21 Workflow action that does nothing. But unlike all those other lazy
22 modules out there, it does nothing with a purpose! For instance, you
23 might want some poor slobs to have some action verified but the elite
24 masters can skip the work entirely. So you can do:
25
26 <state name="checking" autorun="yes">
27 <action name="verify" resulting_state="verified">
28 <condition name="isPoorSlob" />
29 </action>
30 <action name="null" resulting_state="verified">
31 <condition name="isEliteMaster" />
32 </action>
33 </state>
34
36 execute()
37
38 Implemented from Workflow::Action. Proudly does nothing and proves it
39 by returning "undef".
40
42 Copyright (c) 2003-2021 Chris Winters. All rights reserved.
43
44 This library is free software; you can redistribute it and/or modify it
45 under the same terms as Perl itself.
46
47 Please see the LICENSE
48
50 Please see Workflow
51
52
53
54perl v5.32.1 2021-01-31 Workflow::Action::Null(3)