Skip to content

Unawaited

Represents a asynchronous function call that has not been awaited.

Example
unawaitedValue := someAsyncFunction();

# prints "<unawaited>"
print(typeof(unawaitedValue));

resolvedValue := unawaitedValue.await;