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

aQute.bnd.build.RunSession Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.build;

import java.util.Map;
import java.util.concurrent.Callable;

public interface RunSession {

	String getName();

	String getLabel();

	int getJdb();

	void stderr(Appendable app) throws Exception;

	void stdout(Appendable app) throws Exception;

	void stdin(String input) throws Exception;

	int launch() throws Exception;

	void cancel() throws Exception;

	Map getProperties();

	int getExitCode();

	String getHost();

	int getAgent();

	void waitTillStarted(long ms) throws InterruptedException;

	long getTimeout();

	boolean validate(Callable isCancelled) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy