You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But, since FlowableFlatMapMaybe takes a Flowable<T>, not a Publisher<T>, a new simple class should be created (FlowableFlatMapMaybePublisher) that takes a Publisher<T> but reuses the internals of FlowableFlatMapMaybe.
The text was updated successfully, but these errors were encountered:
Some operators in
Maybe
,Single
andCompletable
are delegating toFlowable
operators that may not be the best fit. For example:Can now be:
But, since
FlowableFlatMapMaybe
takes aFlowable<T>
, not aPublisher<T>
, a new simple class should be created (FlowableFlatMapMaybePublisher
) that takes aPublisher<T>
but reuses the internals ofFlowableFlatMapMaybe
.The text was updated successfully, but these errors were encountered: