Activity
Deloww issue comment ReactiveCocoa/ReactiveSwift
Fix shared state in retry
This fixes an issue where state is shared between different start
invocations of the same producer.
let p = someProducer.retry(upTo: 1, interval: interval, on:scheduler)
p.start(...) // This consumes retries for the purpose of delaying errors
...
p.start(...) // Retries for the purpose of delaying errors can be negative here, resulting in the last error not being sent immediately.
Checklist
- Updated CHANGELOG.md.
rbqren000 forked ReactiveCocoa/ReactiveCocoa
ajjumehra issue comment ReactiveCocoa/ReactiveSwift
Can you describe your issue? ReactiveSwift works fine with SwiftUI, although you will need to use Combine to bridge state changes to an
ObservableObject
which is what SwiftUI uses for observing state changes and updating theView
.
How
ajjumehra issue comment ReactiveCocoa/ReactiveSwift
I want to map property with @Published, any example will help a lot
mluisbrown issue comment ReactiveCocoa/ReactiveSwift
Can you describe your issue? ReactiveSwift works fine with SwiftUI, although you will need to use Combine to bridge state changes to an ObservableObject
which is what SwiftUI uses for observing state changes and updating the View
.
SeongWk forked ReactiveCocoa/ReactiveCocoa
blockcodewill forked ReactiveCocoa/ReactiveCocoa
937447974 forked ReactiveCocoa/ReactiveCocoa
Fix shared state in retry
This fixes an issue where state is shared between different
start
invocations of the same producer.Checklist