| 3137 | } |
| 3138 | |
| 3139 | WASMEDGE_CAPI_EXPORT bool |
| 3140 | WasmEdge_AsyncWaitFor(const WasmEdge_Async *Cxt, |
| 3141 | uint64_t Milliseconds) noexcept { |
| 3142 | if (Cxt) { |
| 3143 | return Cxt->Async.waitFor(std::chrono::milliseconds(Milliseconds)); |
| 3144 | } |
| 3145 | return false; |
| 3146 | } |
| 3147 | |
| 3148 | WASMEDGE_CAPI_EXPORT void WasmEdge_AsyncCancel(WasmEdge_Async *Cxt) noexcept { |
| 3149 | if (Cxt) { |