runMACS
 All Data Structures Files Functions Variables Enumerations Enumerator Macros
InfoServer.h
Go to the documentation of this file.
1 #ifndef INFO_SERVER_H
2 #define INFO_SERVER_H
3 
4 #include <RocServer.h>
5 
6 class InfoServer : public RocServer {
7 public:
8  InfoServer(zmq::context_t & _ctx,
9  const std::string & _brokerEndpoint,
10  const std::string & _serviceName,
11  const std::string & _thisHostName);
12  ~InfoServer();
13 private:
14  Json::Value getattr(const std::string & name) override;
15  std::string thisHostName;
16 };
17 
18 #endif /* INFO_SERVER_H */
InfoServer(zmq::context_t &_ctx, const std::string &_brokerEndpoint, const std::string &_serviceName, const std::string &_thisHostName)
Definition: InfoServer.cpp:4