SignalProducerConvertible

public protocol SignalProducerConvertible

Represents reactive primitives that can be represented by 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 SignalProducer representation of self.

    Declaration

    Swift

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