11 #ifndef WRENCH_COMPOUND_JOB_COMPLETED_EVENT_H
12 #define WRENCH_COMPOUND_JOB_COMPLETED_EVENT_H
16 #include "ExecutionEvent.h"
17 #include "wrench/failure_causes/FailureCause.h"
37 class FileRegistryService;
39 class FileRegistryService;
63 std::shared_ptr<CompoundJob>
job;
71 std::string
toString()
override {
return "CompoundJobCompletedEvent (job: " + this->job->getName() +
"; cs = " + this->compute_service->getName() +
")";}
83 #endif //WRENCH_COMPOUND_JOB_COMPLETED_EVENT_H
std::shared_ptr< CompoundJob > job
The compound job that has completed.
Definition: CompoundJobCompletedEvent.h:63
Definition: Action.cpp:28
A class to represent the various execution events that are relevant to the execution of a workflow.
Definition: ExecutionEvent.h:26
std::shared_ptr< ComputeService > compute_service
The compute service on which the compound job has completed.
Definition: CompoundJobCompletedEvent.h:65
A "compound job has completed" ExecutionEvent.
Definition: CompoundJobCompletedEvent.h:46
std::string toString() override
Get a textual description of the event.
Definition: CompoundJobCompletedEvent.h:71