1) Why not use Flowable.just() 2) Your lambda insi...
# rx
a
1) Why not use Flowable.just() 2) Your lambda inside combineLatest is going to determine the type subscribe will read in. In your example, you have an empty lambda, which’ll return Unit, which will of course then make the stream Flowable<Unit> 3) If your example has actual code, perhaps post that. Otherwise, make sure the last statement in your lambda doesn’t return Unit, otherwise this will be the return value