View Javadoc

1   // BSD License (http://www.galagosearch.org/license)
2   
3   package org.galagosearch.tupleflow.execution;
4   
5   import java.util.List;
6   
7   /***
8    *
9    * @author trevor
10   */
11  public interface StageExecutionStatus {
12      public String getName();
13      public int getBlockedInstances();
14      public int getQueuedInstances();
15      public int getRunningInstances();
16      public int getCompletedInstances();
17  
18      public boolean isDone();
19      public List<Exception> getExceptions();
20  }