24 bool queueEmpty(
void);
26 void sendRunMessageToService(std::string serviceURL, std::string messageOut, std::string serviceName, std::string serviceType, std::string serviceId);
28 struct startupInformation {
29 std::string sessionId;
31 std::string serviceName;
32 std::string serviceType;
33 std::string serviceUrl;
36 std::string credentialsUserName;
37 std::string credentialsUserPassword;
39 std::string databaseUserName;
40 std::string databaseUserPassword;
42 std::string userCollection;
43 std::string sessionType;
49 std::list<startupInformation> m_queue;
Definition ServiceRunStarter.h:13
void sessionClosing(const std::string &_sessionId)
Definition ServiceRunStarter.cpp:43
virtual ~ServiceRunStarter()
Definition ServiceRunStarter.cpp:64
static ServiceRunStarter & instance()
Definition ServiceRunStarter.cpp:12
void addService(Session *_session, Service *_service)
Definition ServiceRunStarter.cpp:17
unsigned short serviceID_t
ID type used to identify a service (16 bit unsigned integer).
Definition CoreTypes.h:14