• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng.internal.thread;
2 
3 /**
4  * Reduced interface to mimic Future.
5  *
6  * @author <a href='mailto:the_mindstorm@evolva.ro'>Alexandru Popescu</a>
7  */
8 public interface IFutureResult {
get()9    Object get() throws InterruptedException, ThreadExecutionException;
10 }
11