HTCondorCentralManagerServiceMessage.h
1 
10 #ifndef WRENCH_HTCONDORCENTRALMANAGERSERVICEMESSAGE_H
11 #define WRENCH_HTCONDORCENTRALMANAGERSERVICEMESSAGE_H
12 
13 #include "wrench/services/ServiceMessage.h"
14 #include "wrench/workflow/job/StandardJob.h"
15 
16 namespace wrench {
17 
18  class HTCondorCentralManagerServiceMessage : public ServiceMessage {
19  protected:
20  HTCondorCentralManagerServiceMessage(std::string name, double payload);
21  };
22 
24  public:
25  NegotiatorCompletionMessage(std::vector<StandardJob *> scheduled_jobs, double payload);
26 
27  std::vector<StandardJob *> scheduled_jobs;
28  };
29 }
30 
31 #endif //WRENCH_HTCONDORCENTRALMANAGERSERVICEMESSAGE_H
HTCondorCentralManagerServiceMessage(std::string name, double payload)
Constructor.
Definition: HTCondorCentralManagerServiceMessage.cpp:20
Definition: HTCondorCentralManagerServiceMessage.h:18
Definition: HTCondorCentralManagerServiceMessage.h:23
Definition: TerminalOutput.cpp:15