WRENCH  1.10
Cyberinfrastructure Simulation Workbench
Overview Installation Getting Started WRENCH 101 WRENCH 102
WMSMessage.h
1 
10 #ifndef WRENCH_WMSMESSAGE_H
11 #define WRENCH_WMSMESSAGE_H
12 
13 #include "wrench/simulation/SimulationMessage.h"
14 
15 namespace wrench {
16 
17  /***********************/
19  /***********************/
20 
24  class WMSMessage : public SimulationMessage {
25  protected:
26  WMSMessage(std::string name, double payload);
27  };
28 
33  class AlarmWMSDeferredStartMessage : public WMSMessage {
34  public:
35  explicit AlarmWMSDeferredStartMessage(double payload);
36 
37  };
38 
42  class AlarmWMSTimerMessage : public WMSMessage {
43  public:
44  explicit AlarmWMSTimerMessage(std::string message, double payload);
46  std::string message;
47  };
48 
49 
50  /***********************/
52  /***********************/
53 }
54 
55 #endif //WRENCH_WMSMESSAGE_H
wrench
Definition: Alarm.cpp:20