Does this code can have any side effects i want to...
# coroutines
s
Does this code can have any side effects i want to search parallelly from two source on text change ?
u
What do you mean with
side effects
?
s
I mean does this code is correct or it can be made more efficient ??
u
There is quite some context missing. But without context i would say: •
mModel.copy(
could be replaces with a constructor
Model(
• I wonder if
_models.offer
is intentionally used or if
_models.send
is what you mean, as you are sending to a conflated channel any way and probably do not want to loose the latest update
s
And what about the flatMapLatest part ?