PublisherType

extension PublisherType: Publisher
  • Declaration

    Swift

    public typealias Output = Element
  • Declaration

    Swift

    public typealias Failure = ErrorType
  • Declaration

    Swift

    public func receive<S>(subscriber: S) where Element == S.Input, ErrorType == S.Failure, S : Subscriber
  • Undocumented

    Declaration

    Swift

    public static func lift<FromOutput>(_ transform: @escaping (FromOutput) -> Output) -> (PublisherType<FromOutput, Failure>)
    -> PublisherType<Output, Failure>