All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.infotel.seleniumrobot.grid.tasks.EndTask Maven / Gradle / Ivy

The newest version!
package com.infotel.seleniumrobot.grid.tasks;

import org.apache.log4j.Logger;

/**
 * Task to end the current grid node/hub
 * @author s047432
 *
 */
public class EndTask implements Task {

	private static final Logger logger = Logger.getLogger(EndTask.class);
	
	@Override
	public void execute() {
		logger.info("requested node stop");
		System.exit(0);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy