SignalProducerProtocol

public protocol SignalProducerProtocol

A protocol for constraining associated types to SignalProducer.

  • The type of values being sent by self.

    Declaration

    Swift

    associatedtype Value
  • The type of error that can occur on self.

    Declaration

    Swift

    associatedtype Error : Error
  • The materialized self.

    Declaration

    Swift

    var producer: SignalProducer<Value, Error> { get }