ConnectableFlowable
and
GroupedFlowable
.See: Description
Class | Description |
---|---|
ConnectableFlowable<T> |
A
ConnectableFlowable resembles an ordinary Flowable , except that it does not begin
emitting items when it is subscribed to, but only when its ConnectableFlowable.connect(io.reactivex.rxjava3.functions.Consumer<? super io.reactivex.rxjava3.disposables.Disposable>) method is called. |
GroupedFlowable<K,T> |
A
Flowable that has been grouped by key, the value of which can be obtained with GroupedFlowable.getKey() . |
ConnectableFlowable
and
GroupedFlowable
.