Contents

value

The result from a nonthrowing task, after it completes.

Declaration

var value: Success { get async }

Discussion

If the task hasn’t completed yet, accessing this property waits for it to complete and its priority increases to that of the current task. Note that this might not be as effective as creating the task with the correct priority, depending on the executor’s scheduling details.

Tasks that never throw an error can still check for cancellation, but they need to use an approach like returning nil instead of throwing an error.

See Also

Accessing Results