Package src :: Module pyflow :: Class RetryParam
[hide private]
[frames] | no frames]

Class RetryParam

source code


parameters pertaining to task retry behavior

Instance Methods [hide private]
 
__init__(self, run_mode, retry_max, wait, window, retry_mode)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
_finalize(self)
decide whether to turn retry off based on retry and run modes:
source code
 
validate(self)
check that the public parameters are valid
source code
 
getTaskCopy(self, retry_max, wait, window, retry_mode)
return a deepcopy of the class customized for each individual task for any retry parameters which are not None
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  allowed_modes = ['nonlocal', 'all']
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, run_mode, retry_max, wait, window, retry_mode)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)