org.testng.internal.thread.IFutureResult 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.internal.thread;
/**
* Reduced interface to mimic Future.
*
* @author Alexandru Popescu
*/
public interface IFutureResult {
Object get() throws InterruptedException, ThreadExecutionException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy