You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you please advise on the right way to specify a value to be displayed when task is in Running state? Given the example below, I'm trying to show something like "#N/A Calculating..." for the first 5 seconds until value is returned. The default behavior is to show it as "#N/A".
It seems like it's easily achievable with IObservable, but I'd prefer using Task if possible.
I was considering intercepting the registration process and implicitly converting Task to IObservable with a first emitted value "#N/A Calculating..." Any thoughts on that approach? Is there a better way to do it?
The text was updated successfully, but these errors were encountered:
Could you please advise on the right way to specify a value to be displayed when task is in Running state? Given the example below, I'm trying to show something like "#N/A Calculating..." for the first 5 seconds until value is returned. The default behavior is to show it as "#N/A".
It seems like it's easily achievable with
IObservable
, but I'd prefer usingTask
if possible.I was considering intercepting the registration process and implicitly converting
Task
toIObservable
with a first emitted value "#N/A Calculating..." Any thoughts on that approach? Is there a better way to do it?The text was updated successfully, but these errors were encountered: