I have created a Lucidchart package that contains custom UI, shapes and data connectors. I have added a button to the right panel that successfully triggers a long running task in Azure. In my current implementation, the button is pressed and the task is of course triggered async
Once the long running task is complete, is there a way for my web server to notify Lucid that the long running task is complete? What are some approaches you might recommend?
Should my extension poll a database table for the state of the task?
Alternatively, is there a way for me to register a endpoint that my web server could call and then the extension or data connector could receive that notification that the registered endpoint has been called and then run some code?
Thanks, Dan