Home > Back-end >  Eclipse/Android Studio/WebStorm/IntelliJ run a continuous process in parallel
Eclipse/Android Studio/WebStorm/IntelliJ run a continuous process in parallel

Time:09-17

I have a process that is building some modules each time I make changes to my code. The process is continuous unless I close it and I want to run it each time I launch my app. I can see a before launch section in my Run/Debug Configurations settings of my IDE but, If I add my process there, the main process is never spawned since the IDE is probably waiting for the first one to finish.

Any idea how to make these two run in parallel?

CodePudding user response:

Use the Compound run/debug configuration.

  • Related