Defines the interface for objects holding the result data of a completed Fluent R task.
Type | Name and description |
---|---|
java.lang.String |
getConsole() Retrieve R console output generated by task, if fetch indicated by Fluent R DSL. |
java.lang.String |
getError() Retrieve error message if task execution failed. |
java.lang.Exception |
getErrorCause() Retrieve cause of error if task execution failed. |
java.util.List<java.net.URL> |
getFiles() Retrieve working directory files generated by task, if fetch indicated by Fluent R DSL. |
java.util.Map<java.lang.String, java.lang.Object> |
getObjects() Retrieve workspace objects generated by task, if fetch indicated by Fluent R DSL. |
java.util.List<java.net.URL> |
getPlots() Retrieve graphics device plots generated by task, if fetch indicated by Fluent R DSL. |
boolean |
isSuccess() Determine if task execution was successful. |
Retrieve R console output generated by task, if fetch indicated by Fluent R DSL.
Retrieve error message if task execution failed.
Retrieve cause of error if task execution failed.
FluentServerException indicates a Fluent R task execution error has been detected by the server.
FluentSyntaxException indicates a Fluent R DSL syntax error has been detected by the builder.
Retrieve working directory files generated by task, if fetch indicated by Fluent R DSL.
Retrieve workspace objects generated by task, if fetch indicated by Fluent R DSL.
Retrieve graphics device plots generated by task, if fetch indicated by Fluent R DSL.
Determine if task execution was successful.