ServiceFailureDetector.h
1 
10 #ifndef WRENCH_FAILUREDETECTOR_H
11 #define WRENCH_FAILUREDETECTOR_H
12 
13 #include <wrench/services/Service.h>
14 #include "wrench/simgrid_S4U_util/S4U_Daemon.h"
15 
16 namespace wrench {
17 
19 
20  public:
21 
22  explicit ServiceFailureDetector(std::string host_on_which_to_run, Service *service_to_monitor, std::string mailbox_to_notify);
23 
24  /***********************/
26  /***********************/
27 
28  private:
29 
30  Service *service_to_monitor;
31  std::string mailbox_to_notify;
32  int main() override;
33 
34  };
35 
36  /***********************/
38  /***********************/
39 
40 
41 };
42 
43 
44 
45 
46 #endif //WRENCH_FAILUREDETECTOR_H
A service that can be added to the simulation and that can be used by a WMS when executing a workflow...
Definition: Service.h:26
Definition: ServiceFailureDetector.h:18
Definition: TerminalOutput.cpp:15