我想创建一个重复功能,该功能使用Combine在我的代码中创建一个循环。我注意到,通过这个出色的仓库:https://github.com/freak4pc/rxswift-to-combine-cheatsheet,Combin没有重复发布者。这是我编写的可重复2种状态的代码。如何将其简化为更易读的内容或创建自己的重复功能?
toggleShouldDisplay = Just<Void>(())
.delay(for: 2, scheduler:RunLoop.main)
.map({ _ in
self.shouldDisplay = true
self.didChange.send(())
})
.delay(for: 2, scheduler: RunLoop.main)
.map({ _ in
self.shouldDisplay = false
self.didChange.send(())
})
.setFailureType(to: NSError.self)
.tryMap({ _ in
throw NSError()
})
.retry(.max) // I might hit Int.max if I reduce the delays
.sink(receiveValue: { _ in
//Left empty
})
答案 0 :(得分:0)
.retry(_:)
运算符实际上旨在用于重试可能失败的操作,例如网络请求。听起来您需要一个计时器来代替。幸运的是,自Xcode 11 beta 2起,Apple已将发布者支持添加到Foundation中的Timer
类中。
关于您的实现的另一条评论:我假设在BindableObject
中使用此代码,因为您正在访问didChange
。由于didChange
可以是任何类型的Publisher
,为什么不将shouldDisplay
属性用作Publisher
?
final class MyModel: BindableObject {
var didChange: CurrentValueSubject<Bool, Never> { shouldDisplaySubject }
var shouldDisplay: Bool { shouldDisplaySubject.value }
private let shouldDisplaySubject = CurrentValueSubject<Bool, Never>(false)
private var cancellables: Set<AnyCancellable> = []
init() {
startTimer()
}
private func startTimer() {
Timer.publish(every: 2, on: .main, in: .default)
.autoconnect()
.scan(false) { shouldDisplay, _ in
!shouldDisplay
}
.assign(to: \.value, on: shouldDisplaySubject)
.store(in: &cancellables)
}
}
答案 1 :(得分:0)
您可以像这样使用Timer.Publisher
:
toggleShouldDisplay = Timer.publisher(every: 2, on: .main, in: .default)
.autoconnect()
.sink {
self.shouldDisplay = !self.shouldDisplay
self.didChange.send(())
}
autconnect()
使Timer
可以在您使用sink(_:)
进行订阅后立即启动。