| 19 | } |
| 20 | |
| 21 | void AndroidDispatchQueue::sync(const Valdi::DispatchFunction& /*function*/) { |
| 22 | SC_ABORT("Cannot call sync() on main thread"); |
| 23 | } |
| 24 | |
| 25 | void AndroidDispatchQueue::async(Valdi::DispatchFunction function) { |
| 26 | _taskQueue.enqueue(std::move(function)); |
no outgoing calls
no test coverage detected