| 49 | } |
| 50 | |
| 51 | void GuiExecutorClient::Cancel() |
| 52 | { |
| 53 | // there is currently no way to know what Async, After or At-call belong to this client |
| 54 | // and we cannot just store ScheduledCall objects, because the list would only grow |
| 55 | throw std::exception("not implemented"); |
| 56 | } |
| 57 | |
| 58 | ActiveExecutorClient::ActiveExecutorClient() |
| 59 | : m_executor(std::make_unique<ActiveExecutor>()) |
nothing calls this directly
no outgoing calls
no test coverage detected