I am porting a desktop app to Xojo Cloud / Web.
Right now my understanding is that the Web App object is always running, unless it shuts down (e.g. executes a “quit” instruction). Then it resurrects itself automagically (relaunches) and runs again.
Sessions are built on top of the App. They run in response to a request for a session and a web page. They can close. And you do not need a session running for the App object to be able to communicate e.g. via the handleSpecialURL event.
Is this correct ? Does the App object automagically relaiunch after quit ?