Home | Trees | Indices | Help |
|
---|
|
Abstract base class for task callables. This class encapsulates the task behavior and the related fixed data (data which stays constant over multiple tasks).
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|
|||
Inherited from |
|
Perform the computation and return the result. Override this method with a concrete implementation. |
Return a fork of this callable, e.g. by making a copy. This method is always called exactly once before a callable is called, so instead of the original callable a fresh fork is called. This ensures that the original callable is preserved when caching is used. If the callable is not modified by the call then it can simply return itself. |
This hook method is only called when the callable is first called in a different Python process / environment. It can be used for modifications in the Python environment that are required by this callable. |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1-MDP on Mon Apr 27 21:56:25 2020 | http://epydoc.sourceforge.net |