Hello all,
Is there a way to asynchronously make a call from a component’s constructor?
I have a compiled C# component that makes a call to an API that takes a while. The call get the same data no matter what is input to the component, so I figure it could just start when the component is constructed.
I’m not sure how to make the async task from the constructor, or how to check if the task has completed when the component gets inputs.
I have looked at that TaskCapableComponent, but I don’t think this addresses my issue.
Thanks for the help in advance.