Say I want to frequently check the status of a long-running asynchronous operation while doing a bunch of other work. Is it possible to check whether an Async
computation expression is completed (just like with Task
's IsCompleted
property)?
In other words, is there a way of interacting with an Async
other than via the methods provided by its computation expression builder or should I use Task
s instead?