runners¶
-
class
anadama2.runners.TaskResult[source]¶ The result of a task’s execution.
Parameters: - task_no – The number of the task that produced this result.
- error – The error generated by executing the task. None if the task was successful.
- dep_keys (list of list of str) – The list of
.nameattributes from the objects of typeanadama2.tracked.Baseassociated with this task. These keys are used with the storage backend to save successful task results. - dep_compares – The list of the results of the
compare()method from the objects of typeanadama2.tracked.Baseassociated with this task. These values are used with the storage backend to save successful task results.
Type: int
Type: str or None