I am using RxJava combineLatest operator.
According to the documentation, when subscribing, the first combine emit event will occur only after both observables emits there values, and from this point, it will emit on every emit of each of the Observables.
How can I determine that the first observable emit event has been occurred and it now waits for the second one..