Shutting down broadcaster

This commit is contained in:
Tomasz Drwięga 2016-05-30 20:39:20 +02:00
parent b4bc395c6e
commit baa2f7c5bb
1 changed files with 2 additions and 1 deletions

View File

@ -116,7 +116,8 @@ impl Server {
q.start_listening(|_message| {
// TODO [ToDr] Some better structure here for messages.
broadcaster.send("new_message").unwrap();
}).expect("It's the only place we are running start_listening. It shouldn't fail.")
}).expect("It's the only place we are running start_listening. It shouldn't fail.");
broadcaster.shutdown().expect("Broadcaster should close gently.")
}).unwrap()
});