Interface JobResult
-
- All Implemented Interfaces:
public interface JobResultJob Execution Result
Represents the results of the execution of a single job.
- Since:
1.0.0
Elizabeth Paige Harper https://github.com/foxcapades
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classJobResult.Companion
-
Method Summary
Modifier and Type Method Description abstract JobResultStatusgetStatus()Job Result Status abstract List<String>getOutputFiles()Persistable job output files. -
-
Method Detail
-
getStatus
abstract JobResultStatus getStatus()
Job Result Status
-
getOutputFiles
abstract List<String> getOutputFiles()
Persistable job output files.
The files in this list will be persisted to the backing S3 store (if they exist).
-
-
-
-