Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BatchStatus ¶
type BatchStatus string
BatchStatus status of job or step execution
const ( //STARTING represent beginning of a job or step execution STARTING BatchStatus = "STARTING" //STARTED job or step have be started and is running STARTED BatchStatus = "STARTED" //STOPPING job or step to be stopped STOPPING BatchStatus = "STOPPING" //STOPPED job or step have be stopped STOPPED BatchStatus = "STOPPED" //COMPLETED job or step have finished successfully COMPLETED BatchStatus = "COMPLETED" //FAILED job or step have failed FAILED BatchStatus = "FAILED" //UNKNOWN job or step have aborted due to unknown reason UNKNOWN BatchStatus = "UNKNOWN" )
func (BatchStatus) And ¶
func (s BatchStatus) And(other BatchStatus) BatchStatus
Click to show internal directories.
Click to hide internal directories.