How to place an if statement inside a concurrent block in Hacklang?

463 Views Asked by At

Say I have 3 asynchronous functions A,B, and C. I want to run them concurrently inside a concurrent block, but for one of the functions I want to check a condition. I'm looking for the following behaviour:

concurrent {
    await A(...);
    await B(...);
    if ($some_condition) {
        await C(...);
    }
}
1

There are 1 best solutions below

0
On BEST ANSWER

Use an async block:

concurrent {
    await A(...);
    await B(...);
    await async {
        if ($some_condition) {
            await C(...);
        }
    };
}