| 89 | Thread worker_; |
| 90 | |
| 91 | static Thread create(const std::string &name) { |
| 92 | return init(std::unique_ptr<rtc::Thread>(rtc::Thread::Create()), name); |
| 93 | } |
| 94 | static Thread create_network(const std::string &name) { |
| 95 | return init(std::unique_ptr<rtc::Thread>(rtc::Thread::CreateWithSocketServer()), name); |
| 96 | } |
nothing calls this directly
no outgoing calls
no test coverage detected