Enumeration ExportState

The ExportState enumeration tells the current state of a export procedure called by DataSessionInterface.export3D, DataSessionInterface.export2D or DataSessionInterface.exportSVG.

The current state is queried by ExportJobInterface.getFileState.

  • ES_Cancelled: the export procedure for the given file is cancelled.
  • ES_Done: the export procedure for the given file is successfully done, and data can be downloaded.
  • ES_Error: the export procedure for the given file has failed.
  • ES_Pending: the export procedure for the given file is pending and waiting for resources to become available in order to start the computation.
  • ES_Processing: the export procedure for the given file is ongoing.
  • ES_Unprocessable: the export procedure for the given file cannot be done (at the moment).
  • ES_Invalid: the call of the function is not correct.

AsyncJobs

Enumeration Members

ES_Cancelled: "cancelled"

The export procedure for the given file is cancelled.

ES_Done: "done"

The export procedure for the given file is successfully done, and data can be downloaded.

ES_Error: "error"

The export procedure for the given file has failed.

ES_Invalid: ""

The export procedure for the given file is invalid.

ES_Pending: "pending"

The export procedure for the given file is pending and waiting for resources to become available in order to start the computation.

ES_Processing: "processing"

The export procedure for the given file is ongoing.

ES_Unprocessable: "unprocessable"

The export procedure for the given file cannot be done (at the moment).