merge develop into master #20

Merged
michael-bailey merged 181 commits from develop into master 2023-12-01 21:48:28 +00:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit cfe72b6c7b - Show all commits

View File

@ -51,6 +51,10 @@ impl<Out> ClientManager<Out>
})
}
pub async fn get_count(&self) -> usize {
self.clients.lock().await.len()
}
pub async fn handle_channel(&self, message: Option<ClientMgrMessage>) {
use ClientMgrMessage::{Add, Remove, SendClients, BroadcastGlobalMessage, SendError};
println!("Handling channel");