Fire and Forget Module

Is there a way to call a module as fire and forget? Meaning Just call a module and doesn’t have to wait till module completes. I want to call a module and exit without have to wait.

If you want a module to not block your current module, then call it in a derived table. Derived tables are executed in parallel.

If you want a module to keep running even after your project has finished, then that’s not possible. However, you can trigger a Server task asynchronously using the “EasyMorph Server command” action. In this case, the task can keep running even after your project has finished.

Thanks @dgudkov. I will check the “EasyMorph Server command”. That might be what I am looking for.