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.
|
__init__(self,
beforeList=None,
afterList=None)
Constructor for the ActionDependencies class. |
source code
|
|
|
|
|
|
|
|
|
__eq__(self,
other)
Equals operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__lt__(self,
other)
Less-than operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__gt__(self,
other)
Greater-than operator, implemented in terms of original Python 2
compare operator. |
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__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|