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 
34  public:
36 
37  };
38 
39  /***********************/
41  /***********************/
42 }
43 
44 #endif //WRENCH_WMSMESSAGE_H
double payload
The message size in bytes.
Definition: SimulationMessage.h:39
WMSMessage(std::string name, double payload)
Constructor.
Definition: WMSMessage.cpp:21
Top-level class to describe a message communicated by processes in the simulation.
Definition: SimulationMessage.h:27
std::string name
The message name.
Definition: SimulationMessage.h:37
Message sent by an alarm to a WMS to tell it that it can start executing its workflow.
Definition: WMSMessage.h:33
Top-level class for messages received/sent by a WMS.
Definition: WMSMessage.h:24
Definition: TerminalOutput.cpp:15