Slackbot
10/19/2022, 10:32 AMFleshgrinder
10/19/2022, 11:01 AM& in a shell. This is the reason why there are so many programs out there to manage background processes. 😉
Use Exec, but wrap it in a daemon thread that executes in the background without disturbing your main process. And, be sure to give it a timeout!Satyarth Sampath
10/19/2022, 11:54 AMUse Exec, but wrap it in a daemon thread that executes in the background without disturbing your main processWould you have some reference for this ? I’m wondering if this feature supported by exec or do you mean just running this in a separate thread on the jvm. My usecase is that I need to trigger some scripts in the beginning and end of a build, however I do not want that that to increase the duration of the build process in itself.
Fleshgrinder
10/19/2022, 12:02 PMSatyarth Sampath
10/19/2022, 1:34 PM