Observable<T>

Why is it that links of the type Observable<> are marked mutable?

What’s the potential danger in linking them from different sinks (say OfType… and more stuff below)?

hi velcrome, the type Observable itself is immutable, but the type T inside might be not. so the link style depends on the T, if its mutable the link also indicates a reference:

image

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.