CurrentValueSubject
-
PassthroughSubject VS CurrentValueSubjectSwiftUI/Basic Property Wrappers 2021. 12. 10. 19:29
PassthroughSubject A subject that broadcasts elements to downstream subscribers. Declaration final class PassthroughSubject whereFailure : Error Overview As a concrete implementation of Subject, the PassthroughSubject provides a convenient way to adapt existing imperative code to the Combine model. Unlike CurrentValueSubject, a PassthroughSubject doesn’t have an initial value or a buffer of the ..