org.testng.remote.adapter.IWorkerAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.remote.adapter;
import org.testng.ISuite;
import org.testng.xml.XmlSuite;
import java.io.IOException;
import java.util.Properties;
/**
* This interface should be implemented by the Master-Slave transport adapter.
* This interface is used by the Slave to pull suites and return results.
*
* @author Guy Korland
* @date April 9, 2007
* @see IMasterAdapter
*/
public interface IWorkerAdapter
{
/**
* Initializes the worker adapter.
* @param properties holds the properties loaded from the remote.properties file.
* @throws Exception adapter might throw any exception on initialization, which will abort this adapter.
*/
void init( Properties properties) throws Exception;
/**
* A blocking call to get the next Suite to test.
* @param timeout the maximum time to wait for the next suite.
* @return the next suite avaliable or null
if the timeout has reached.
* @throws IOException might be thrown on IO error.
* @throws InterruptedException if interrupted while waiting.
*/
XmlSuite getSuite( long timeout) throws InterruptedException, IOException;
/**
* Return a suite result.
* @param result the result to return
* @throws IOException might be thrown on IO error.
*/
void returnResult( ISuite result) throws IOException;
}