AgentStatus

public enum AgentStatus : Equatable

The status of a job given by launchctl list

  • Indicates the job is running, with the given PID/

    Declaration

    Swift

    case running(pid: Int)
  • Indicates the job is loaded, but not running.

    Declaration

    Swift

    case loaded
  • Indicates the job is unloaded.

    Declaration

    Swift

    case unloaded
  • Declaration

    Swift

    public static func == (lhs: AgentStatus, rhs: AgentStatus) -> Bool