Class representing dependencies associated with an extended
action.
Execution ordering for extended actions is done in one of two ways:
either by using index values (lower index gets run first) or by having
the extended action specify dependencies in terms of other named actions.
This class encapsulates the dependency information for an extended
action.
As with all of the other classes that represent configuration
sections, all of these values are optional. It is up to some
higher-level construct to decide whether everything they need is filled
in. Some validation is done on non-None
assignments
through the use of the Python property()
construct.
The following restrictions exist on data in this class:
|
__init__(self,
beforeList=None,
afterList=None)
Constructor for the ActionDependencies class. |
source code
|
|
|
|
|
|
|
|
|
|
|
_getBeforeList(self)
Property target used to get the "run before" list. |
source code
|
|
|
|
|
_getAfterList(self)
Property target used to get the "run after" list. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|