(&mut self, msg: Msg)
| 163 | |
| 164 | #[inline] |
| 165 | async fn dispatch(&mut self, msg: Msg) -> Result<(), DestinationDown<Msg>> { |
| 166 | |
| 167 | if self.channels.len() == 0 { |
| 168 | return Ok(()) |
| 169 | } |
| 170 | |
| 171 | self.broadcast(msg).await; |
| 172 | Ok(()) |
| 173 | } |
| 174 | |
| 175 | |
| 176 | #[inline] |