UpdatingSource

public protocol UpdatingSource : Source, UpdatesProviding
  • events Default implementation

    An AsyncStream of events emitted by this UpdatingSource.

    Default Implementation

    Declaration

    Swift

    var events: AsyncStream<SourceEvent> { get }
  • A Combine publisher that publishes events as they occur.

    Declaration

    Swift

    var eventsPublisher: AnyPublisher<SourceEvent, Never> { get }