ADD: Adds comment to processConnections_ class function of the manager

This commit is contained in:
Christina Sander 2022-08-30 15:12:31 +02:00
parent 1ed68d302d
commit 5c2fc37748
Signed by: csander
GPG Key ID: 8A1F9FA7B3420089
1 changed files with 8 additions and 1 deletions

View File

@ -103,7 +103,14 @@
*/
void processEvent(const std::shared_ptr<EventManager::Event> event);
/**
* @brief adds the queued participants to the list of connected participants
*
* The connectionQueue_ contains the participants that should be connected to
* the manager. All connected participants are stored in the list participants_.
* This class function adds the queued participants to the list participants_
* and removes them from the queue.
*/
void processConnections_();
/**