SingleEvent

public enum SingleEvent<Element>

Undocumented

  • One and only sequence element is produced. (underlying observable sequence emits: .next(Element), .completed)

    Declaration

    Swift

    case success(Element)
  • Sequence terminated with an error. (underlying observable sequence emits: .error(Error))

    Declaration

    Swift

    case error(Error)