# Packages
No description provided by the author
# Constants
StateAborted should be given if the task is aborted (stopped while running).
StateCancelled should be given if the queued task is canceled.
StateDone should be given if the task is complete.
StateError should be given if the task fails.
StateInternalError should only be given if the task fails prior to execution.
StateOther should be avoided.
StateQueued should be given while the task is waiting to be executed.
StateRunning should be given if the task is running.
# Structs
Job contains the information for a given job.
JobTask represents a single task in a job.
JobWithTasks is a regular Job, but with an expanded TaskHistory.
Node contains information about a node.
Task defines the information of a task.
User contains the info for a user.
# Type aliases
StringArray provides SQL scanner bindings for an array of strings.
StringMap provides SQL scanner bindings for a map of strings.
TaskArray provides SQL scanner bindings for an array of Tasks.
TaskMap provides SQL scanner bindings for a map of JobTasks.
TaskState represents the current state of the task.