I have a table on a LV page. Each row has a button which is supposed to refresh data in a row. To refresh it, it has to send at least one request to an external API which may take a few seconds or as well as a few minutes. Data received from an external API gets saved into a DB.
I could make a user wait, but it'll be better to create a background task and return a response immediately which says something like "being updated"
Once a response has been received, how will I notify a live page about this, to then make it refresh its data?