Results

data class Results(exitCode: Int?, console: List<String>?, inFile: String, outFile: String?)

Constructors

Link copied to clipboard
fun Results(inFile: String, outFile: String)

Sometimes, other programs call SQM for us, so we don't get the exitCode and console. In that case, just handle the in/out files.

Properties

Link copied to clipboard
var console: List<String>?
Link copied to clipboard
val errors: List<Pair<SQM.ErrorType, String>>

Any errors we could parse from the logs.

Link copied to clipboard
val exitCode: Int?
Link copied to clipboard
val inFile: String
Link copied to clipboard
val outFile: String?