(&self)
| 184 | } |
| 185 | |
| 186 | pub fn is_closed(&self) -> bool { |
| 187 | let mut is_closed = self |
| 188 | .brokers |
| 189 | .values() |
| 190 | .fold(false, |is_closed, broker| is_closed && broker.is_closed()); |
| 191 | for chan in self.cache.values() { |
| 192 | is_closed = is_closed && chan.is_closed(); |
| 193 | } |
| 194 | is_closed |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | impl DynPorts<Sender> { |
no outgoing calls
no test coverage detected