TaskEventType

public protocol TaskEventType

A protocol encapsulated TaskEvent. Necessary to create Observable operators and not intended for public use.

  • The exit status code if available, nil otherwise.

    Declaration

    Swift

    var exitStatus: Int?
  • The output of the event if available, nil otherwise.

    Declaration

    Swift

    var output: Data?