mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-12-15 07:20:17 +00:00
SDK: Initialize members
This commit is contained in:
@@ -73,14 +73,14 @@ class DDSSession
|
|||||||
auto IsRunning() const -> bool;
|
auto IsRunning() const -> bool;
|
||||||
auto SubmitAgents(Quantity agents) -> void;
|
auto SubmitAgents(Quantity agents) -> void;
|
||||||
struct AgentInfo {
|
struct AgentInfo {
|
||||||
Quantity idleAgentsCount;
|
Quantity idleAgentsCount = 0;
|
||||||
Quantity activeAgentsCount;
|
Quantity activeAgentsCount = 0;
|
||||||
Quantity executingAgentsCount;
|
Quantity executingAgentsCount = 0;
|
||||||
std::vector<DDSAgent> agents;
|
std::vector<DDSAgent> agents;
|
||||||
};
|
};
|
||||||
auto RequestAgentInfo() -> AgentInfo;
|
auto RequestAgentInfo() -> AgentInfo;
|
||||||
struct CommanderInfo {
|
struct CommanderInfo {
|
||||||
int pid;
|
int pid = -1;
|
||||||
std::string activeTopologyName;
|
std::string activeTopologyName;
|
||||||
};
|
};
|
||||||
auto RequestCommanderInfo() -> CommanderInfo;
|
auto RequestCommanderInfo() -> CommanderInfo;
|
||||||
|
|||||||
Reference in New Issue
Block a user