WRENCH  1.11
Cyberinfrastructure Simulation Workbench
Overview Installation Getting Started WRENCH 101 WRENCH 102
ExecutionControllerMessage.h
1 
10 #ifndef WRENCH_EXECUTIONCONTROLLERMESSAGE_H
11 #define WRENCH_EXECUTIONCONTROLLERMESSAGE_H
12 
13 #include "wrench/simulation/SimulationMessage.h"
14 
15 namespace wrench {
16 
17  /***********************/
19  /***********************/
20 
25  protected:
27  };
28 
29 
34  public:
35  explicit ExecutionControllerAlarmTimerMessage(std::string message, double payload);
37  std::string message;
38  };
39 
40 
41  /***********************/
43  /***********************/
44 }
45 
46 #endif //WRENCH_EXECUTIONCONTROLLERMESSAGE_H
wrench::ExecutionControllerMessage::ExecutionControllerMessage
ExecutionControllerMessage(double payload)
Constructor.
Definition: ExecutionControllerMessage.cpp:21
wrench::SimulationMessage
Top-level class to describe a message communicated by processes in the simulation.
Definition: SimulationMessage.h:28
wrench
Definition: Action.cpp:28
wrench::SimulationMessage::payload
double payload
The message name.
Definition: SimulationMessage.h:40
wrench::ExecutionControllerAlarmTimerMessage
Message sent when a timer set by a ExecutionController goes off.
Definition: ExecutionControllerMessage.h:33
wrench::ExecutionControllerAlarmTimerMessage::message
std::string message
The message sent my the timer.
Definition: ExecutionControllerMessage.h:37
wrench::ExecutionControllerMessage
Top-level class for messages received/sent by a ExecutionController.
Definition: ExecutionControllerMessage.h:24
wrench::ExecutionControllerAlarmTimerMessage::ExecutionControllerAlarmTimerMessage
ExecutionControllerAlarmTimerMessage(std::string message, double payload)
Constructor.
Definition: ExecutionControllerMessage.cpp:31