| 58 | } |
| 59 | |
| 60 | std::vector<Stream> get_streams() { |
| 61 | auto& [streams, mtx] = all_streams(); |
| 62 | std::shared_lock lock(mtx); |
| 63 | return streams; |
| 64 | } |
| 65 | |
| 66 | Stream new_stream(Device d) { |
| 67 | auto& [streams, mtx] = all_streams(); |
no outgoing calls
no test coverage detected