|
__init__(self,
wf_obj=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
get_from_states(self)
Returns a list of states that can be transitioned from to the current
state. |
source code
|
|
|
get_to_states(self)
Returns a list of states that can be transitioned to from the current
state. |
source code
|
|
|
get_state_by_name(self,
state_name)
Get the State object for the given name. |
source code
|
|
|
|
|
set_initial_state(self,
state)
Sets the initial state, used by the reset method. |
source code
|
|
|
reset(self,
wf_obj,
init_state=None)
Reset the work flow to the initial state using the given object. |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|