user1803551
user1803551

Reputation: 13427

How to add delays for launch configurations in Eclipse?

I have a launch group with several launch configurations. When it is ran, all configurations are launched one after the other quickly. I'm not sure if one launch needs to "return" in some fashion in order for the next to start.

I would like to add a delay between some of the launches. Either a manual time duration: launch1, wait 2 seconds, launch2; or some way to tell the next launch that it can happen now.

Is there any way to do it in Eclipse (I'm on 4.5.2)? Maybe a plugin or an option in the launch configuration? I'm also open for a script option if someone can guide me.

Upvotes: 1

Views: 528

Answers (1)

user1803551
user1803551

Reputation: 13427

In Eclipse Oxygen this options became available as a Launch Group launch configuration. Go to Run > Run Configurations..., under Launch Group add a new configuration and then add the configurations you want to launch.

It's possible to set a delay in the Post launch action:

enter image description here

Upvotes: 2

Related Questions