Questions

I need to make a call that might take a few seconds. What is the best way to do this?

Create a background thread in do_before_launch or do_launch to do the work. Use on_timer to poll until the result is available.

Previous