Closed inamiy closed 6 years ago
This PR supports BehaviorRelay which is introduced in RxSwift 4.0.0.
BehaviorRelay
But be aware that Property behaves more like Variable than BehaviorRelay in this case, since it internally owns Variable that will send .on(.completed) when deinited.
Property
Variable
.on(.completed)
This PR supports
BehaviorRelay
which is introduced in RxSwift 4.0.0.But be aware that
Property
behaves more likeVariable
thanBehaviorRelay
in this case, since it internally ownsVariable
that will send.on(.completed)
when deinited.