6 lines
144 B
Java
6 lines
144 B
Java
package org.testng.internal.thread;
|
|
|
|
public interface IFutureResult {
|
|
Object get() throws InterruptedException, ThreadExecutionException;
|
|
}
|