10 #ifndef WRENCH_JOB_FILLED_H
11 #define WRENCH_JOB_FILLED_H
16 #include "wrench/workflow/failure_causes/FailureCause.h"
17 #include "wrench/services/compute/ComputeService.h"
35 JobKilled(std::shared_ptr<WorkflowJob> job, std::shared_ptr<ComputeService> compute_service);
40 std::shared_ptr<WorkflowJob>
getJob();
45 std::shared_ptr<WorkflowJob> job;
46 std::shared_ptr<ComputeService> compute_service;
56 #endif //WRENCH_JOB_FILLED_H
std::shared_ptr< WorkflowJob > getJob()
Getter.
Definition: JobKilled.cpp:36
std::shared_ptr< ComputeService > getComputeService()
Getter.
Definition: JobKilled.cpp:44
std::string toString()
Get the human-readable failure message.
Definition: JobKilled.cpp:52
A top-level class to describe all simulation-valid failures that can occur during workflow execution ...
Definition: FailureCause.h:31
A "job has been killed" failure cause.
Definition: JobKilled.h:30
JobKilled(std::shared_ptr< WorkflowJob > job, std::shared_ptr< ComputeService > compute_service)
Constructor.
Definition: JobKilled.cpp:27