| 64 | } |
| 65 | |
| 66 | void RdContext::PostDelayTask(std::function<void()>&& task, int delay) { |
| 67 | PostUITask([=]() { |
| 68 | QTimer::singleShot(delay, [=]() { |
| 69 | task(); |
| 70 | }); |
| 71 | }); |
| 72 | } |
| 73 | |
| 74 | void RdContext::PostStreamPluginTask(std::function<void()>&& task) { |
| 75 | stream_plugin_thread_->Post(std::move(task)); |
nothing calls this directly
no outgoing calls
no test coverage detected