Add GetActiveConnectionCount to IConnectionSet

This commit is contained in:
puvvadar
2021-06-21 11:46:16 -07:00
parent 04387be083
commit 8f5681ffdb
6 changed files with 43 additions and 1 deletions
@@ -47,5 +47,9 @@ namespace AzNetworking
//! Returns the current total connection count for this connection set
//! @return the current total connection count for this connection set
virtual uint32_t GetConnectionCount() const = 0;
//! Returns the current total count of connections not pending disconnect for this connection set
//! @return the current total count of connections not pending disconnect for this connection set
virtual uint32_t GetActiveConnectionCount() const = 0;
};
}