PilotJobExpiredEvent.h
1 
11 #ifndef WRENCH_PILOT_JOB_EXPIRED_EVENT_H
12 #define WRENCH_PILOT_JOB_EXPIRED_EVENT_H
13 
14 #include <string>
15 #include "wrench/workflow/failure_causes/FailureCause.h"
16 
17 /***********************/
19 /***********************/
20 
21 namespace wrench {
22 
23  class WorkflowTask;
24 
25  class WorkflowFile;
26 
27  class StandardJob;
28 
29  class PilotJob;
30 
31  class ComputeService;
32 
33  class StorageService;
34 
35  class FileRegistryService;
36 
37  class FileRegistryService;
38 
39 
44 
45  private:
46 
47  friend class WorkflowExecutionEvent;
53  PilotJobExpiredEvent(std::shared_ptr<PilotJob> pilot_job,
54  std::shared_ptr<ComputeService> compute_service)
56 
57  public:
58 
60  std::shared_ptr<PilotJob> pilot_job;
62  std::shared_ptr<ComputeService> compute_service;
63 
68  std::string toString() override { return "PilotJobExpiredEvent (cs = " + this->compute_service->getName() + ")";}
69 
70  };
71 
72 };
73 
74 /***********************/
76 /***********************/
77 
78 
79 
80 #endif //WRENCH_PILOT_JOB_EXPIRED_EVENT_H
std::shared_ptr< ComputeService > compute_service
The compute service on which the pilot job has expired.
Definition: PilotJobExpiredEvent.h:62
A "pilot job has expired" WorkflowExecutionEvent.
Definition: PilotJobExpiredEvent.h:43
std::shared_ptr< PilotJob > pilot_job
The pilot job that has expired.
Definition: PilotJobExpiredEvent.h:60
Definition: Alarm.cpp:20
A class to represent the various execution events that are relevant to the execution of a workflow.
Definition: WorkflowExecutionEvent.h:26
std::string toString() override
Get a textual description of the event.
Definition: PilotJobExpiredEvent.h:68