| 14 | namespace SC |
| 15 | { |
| 16 | static AwaitTask slowOperation(AwaitEventLoop& await) |
| 17 | { |
| 18 | SC_CO_TRY(co_await await.sleep({1000})); |
| 19 | co_return Result(true); |
| 20 | } |
| 21 | |
| 22 | static AwaitTask deadlineWorkflow(AwaitEventLoop& await, AwaitTimeoutResult& timeout) |
| 23 | { |
no test coverage detected