wrapper
Class InvocationStatus

java.lang.Object
  |
  +--wrapper.InvocationStatus

public class InvocationStatus
extends java.lang.Object

Data structure used to report invocation status.


Field Summary
(package private)  java.lang.Integer invocationId
          Id of the invocation this status report is for.
(package private)  float progress
          Progress of the invocation.
(package private)  java.lang.String status
          Status of the invocation.
 
Constructor Summary
(package private) InvocationStatus(java.lang.Integer invocationId)
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

invocationId

final java.lang.Integer invocationId
Id of the invocation this status report is for.

status

java.lang.String status
Status of the invocation. Possible values are:
DONE: computation has finished, all results are ready and have final values
NOT_DONE: computation is still going on, no results yet available
PARTIAL: computation is still going on, preliminary results are available
ERROR: computation aborted before finishing

progress

float progress
Progress of the invocation. If -1, then no progress has yet been reported.
Constructor Detail

InvocationStatus

InvocationStatus(java.lang.Integer invocationId)