Uses of Interface
io.reactivex.rxjava3.internal.fuseable.HasUpstreamMaybeSource
Packages that use HasUpstreamMaybeSource
-
Uses of HasUpstreamMaybeSource in io.reactivex.rxjava3.internal.operators.maybe
Classes in io.reactivex.rxjava3.internal.operators.maybe that implement HasUpstreamMaybeSourceModifier and TypeClassDescription(package private) classAbstract base class for intermediate Maybe operators that take an upstream MaybeSource.final classSignals true if the source signals a value that is object-equals with the provided value, false otherwise or for empty sources.final classMaybeCount<T>Signals 1L if the source signalled an item or 0L if the source is empty.final classMaybeDelay<T>Delays all signal types by the given amount and re-emits them on the given scheduler.final classDelay the emission of the main signal until the other signals an item or completes.final classDelay the subscription to the main Maybe until the other signals an item or completes.final classMaybeDematerialize<T,R> Maps the success value of the source to a Notification, then maps it back to the corresponding signal type.final classMaybeDetach<T>Breaks the references between the upstream and downstream when the Maybe terminates.final classCalls a consumer after pushing the current item to the downstream.final classExecute an action after an onSuccess, onError, onComplete or a dispose event.final classCalls a BiConsumer with the success, error values of the upstream Maybe or with two nulls if the Maybe completed.final classInvokes callbacks upononSubscribefrom upstream anddisposefrom downstream.final classMaybeFilter<T>Filters the upstream via a predicate, returning the success item or completing if the predicate returns false.final classMaybeFlatMapBiSelector<T,U, R> Maps a source item to another MaybeSource then calls a BiFunction with the original item and the secondary item to generate the final result.final classMaps a value into a MaybeSource and relays its signal.final classMaybeFlatten<T,R> Maps a value into a MaybeSource and relays its signal.final classMaybeHide<T>Hides the identity of the upstream Maybe and its Disposable sent through onSubscribe.final classTurns an onSuccess into an onComplete, onError and onComplete is relayed as is.final classMaybeIsEmpty<T>Signals true if the source Maybe signals onComplete, signals false if the source Maybe signals onSuccess.final classSignals true if the source Maybe signals onComplete, signals false if the source Maybe signals onSuccess.final classMaybeLift<T,R> Calls a MaybeOperator for the incoming MaybeObserver.final classMaybeMap<T,R> Maps the upstream success value into some other value.final classSignals the onSuccess, onError or onComplete events on a the specific scheduler.final classEmits an onComplete if the source emits an onError and the predicate returns true for that Throwable.final classSubscribes to the MaybeSource returned by a function if the main source signals an onError.final classReturns a value generated via a function if the main source signals an onError.final classMaybePeek<T>Peeks into the lifecycle of a Maybe and MaybeObserver.final classSubscribes to the upstream MaybeSource on the specified scheduler.final classSubscribes to the other source if the main source is empty.final classSubscribes to the other source if the main source is empty.final classMaybeTakeUntilMaybe<T,U> Relays the main source's event unless the other Maybe signals an item first or just completes at which point the resulting Maybe is completed.final classRelays the main source's event unless the other Publisher signals an item first or just completes at which point the resulting Maybe is completed.final classMaybeTimeoutMaybe<T,U> Switches to the fallback Maybe if the other MaybeSource signals a success or completes, or signals TimeoutException if fallback is null.final classSwitches to the fallback Maybe if the other Publisher signals a success or completes, or signals TimeoutException if fallback is null.final classWraps a MaybeSource and exposes it as a Flowable, relaying signals in a backpressure-aware manner and composes cancellation through.final classWraps a MaybeSource and exposes it as an Observable, relaying signals in a backpressure-aware manner and composes cancellation through.final classWraps a MaybeSource and exposes its onSuccess and onError signals and signals NoSuchElementException for onComplete ifdefaultValueis null.final classWraps a MaybeSource without safeguard and calls its subscribe() method for each MaybeObserver.final classMakes sure a dispose() call from downstream happens on the specified scheduler.