mirror of
https://github.com/corda/corda.git
synced 2025-04-05 10:27:11 +00:00
Add explanatory comment about why we changed Observer.tee to use unsafe subscribe
This commit is contained in:
parent
9d2df380ea
commit
5f446aea7e
@ -192,6 +192,9 @@ fun <T> Observable<T>.bufferUntilSubscribed(): Observable<T> {
|
||||
@DeleteForDJVM
|
||||
fun <T> Observer<T>.tee(vararg teeTo: Observer<T>): Observer<T> {
|
||||
val subject = PublishSubject.create<T>()
|
||||
// use unsafe subscribe, so that the teed subscribers will not get wrapped with SafeSubscribers,
|
||||
// therefore a potential raw exception (non Rx) coming from a child -unsafe subscribed- observer
|
||||
// will not unsubscribe all of the subscribers under the PublishSubject.
|
||||
subject.unsafeSubscribe(Subscribers.from(this))
|
||||
teeTo.forEach { subject.unsafeSubscribe(Subscribers.from(it)) }
|
||||
return subject
|
||||
|
Loading…
x
Reference in New Issue
Block a user