| 276 | } |
| 277 | |
| 278 | maajs::PromiseType ControllerImpl::wait(MaaCtrlId id) |
| 279 | { |
| 280 | auto worker = new maajs::AsyncWork<MaaStatus>(env, [handle = controller, id]() { return MaaControllerWait(handle, id); }); |
| 281 | worker->Queue(); |
| 282 | return worker->Promise(); |
| 283 | } |
| 284 | |
| 285 | bool ControllerImpl::get_connected() |
| 286 | { |
nothing calls this directly
no test coverage detected