Package io.reactivex.rxjava4.observables
package io.reactivex.rxjava4.observables
Classes supporting the Observable base reactive class:
ConnectableObservable and
GroupedObservable.-
ClassesClassDescriptionA
ConnectableObservableresembles an ordinaryObservable, except that it does not begin emitting items when it is subscribed to, but only when itsConnectableObservable.connect(Consumer)method is called.GroupedObservable<K,T> AnObservablethat has been grouped by key, the value of which can be obtained withGroupedObservable.getKey().