@brief Returns the total number of connections (active + inactive)
| 620 | |
| 621 | /// @brief Returns the total number of connections (active + inactive) |
| 622 | [[nodiscard]] size_t getNumTotalConnections() const { return connections.sizeInElements(); } |
| 623 | |
| 624 | /// @brief Returns only the number of active connections |
| 625 | [[nodiscard]] size_t getHighestActiveConnection() const { return highestActiveConnection; } |
nothing calls this directly
no outgoing calls
no test coverage detected