We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
unavailable
SignalProducer.retry(_:)
1 parent b9b6e60 commit 163a28bCopy full SHA for 163a28b
Sources/Deprecations+Removals.swift
@@ -229,6 +229,9 @@ extension SignalProducerProtocol {
229
@available(*, unavailable, renamed:"skip(first:)")
230
public func skip(_ count: Int) -> SignalProducer<Value, Error> { fatalError() }
231
232
+ @available(*, unavailable, renamed:"retry(upTo:)")
233
+ public func retry(_ count: Int) -> SignalProducer<Value, Error> { fatalError() }
234
+
235
@available(*, unavailable, renamed:"observe(on:)")
236
public func observeOn(_ scheduler: UIScheduler) -> SignalProducer<Value, Error> { fatalError() }
237
0 commit comments