Hi, I wonder are the new `combine` & `combineT...
# coroutines
g
First, you use conflate(), which just drop not processed values
Second that you need combineLatest if you want cancel previous emission
j
CombineLatest has wrong name and probably that is the reason is deprecated. CombineLatest is jsut combine.
In the example above I'm using conflate() and it gives weird result.
g
Ah yeah, it's renamed in 1.3
What kind result do you expect from conflate?
j
Nothing particular from conflate. I need to cancel the transforme in combine, if new value arrives.
I'd like the example above to print 5C, as mentioned ^^