Hi guys!
my question is that i have a function that process data from a table and network requesting after that it’s return the final processed table but the problem is that to get this final table the app takes few seconds depending internet connection and other factors thats can be 30 seconds or less and when i call
MyVar=MyFunction()
MyVar==nil because the process isn’t don’t yet, i need to use timers to know when the process its done but sometimes its still looping and some errors may occur, it’s there a way to wait for that value and the entire code thats depends from this value wait for it without a timer trick or something like this?
thanks!