ApplicationStop
Stops the currently running application
Method Signature
ApplicationStop()
Arguments
This function does not accept any arguments
Examples
Basic applicationStop usage.
Halt the application.
var applicationRequiresHalt = true;
if( applicationRequiresHalt ) applicationStop();
writeOutput( "Still Running" );
Result: // We don't expect anything to happen after the application has been stopped.
Related
Last updated
Was this helpful?