| 109 | } |
| 110 | |
| 111 | void AllChannels::listChannels(Channel& out) { |
| 112 | _mutex_general.lock(); |
| 113 | std::string retval; |
| 114 | for (auto channel : _channelq) { |
| 115 | log_stream(out, channel->name()); |
| 116 | } |
| 117 | _mutex_general.unlock(); |
| 118 | } |
| 119 | |
| 120 | void AllChannels::flushRx() { |
| 121 | _mutex_general.lock(); |
no test coverage detected