Uses of Enum Class
io.reactivex.rxjava3.core.BackpressureStrategy
Packages that use BackpressureStrategy
Package
Description
Base reactive classes:
Flowable
, Observable
,
Single
, Maybe
and
Completable
; base reactive consumers;
other common base interfaces.-
Uses of BackpressureStrategy in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core that return BackpressureStrategyModifier and TypeMethodDescriptionstatic BackpressureStrategy
Returns the enum constant of this class with the specified name.static BackpressureStrategy[]
BackpressureStrategy.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in io.reactivex.rxjava3.core with parameters of type BackpressureStrategyModifier and TypeMethodDescriptionFlowable.create
(@NonNull FlowableOnSubscribe<@NonNull T> source, @NonNull BackpressureStrategy mode) Provides an API (via a coldFlowable
) that bridges the reactive world with the callback-style, generally non-backpressured world.Flowable.fromObservable
(@NonNull ObservableSource<@NonNull T> source, @NonNull BackpressureStrategy strategy) Converts the givenObservableSource
into aFlowable
by applying the specified backpressure strategy.Observable.toFlowable
(@NonNull BackpressureStrategy strategy) Converts the currentObservable
into aFlowable
by applying the specified backpressure strategy. -
Uses of BackpressureStrategy in io.reactivex.rxjava3.internal.operators.flowable
Fields in io.reactivex.rxjava3.internal.operators.flowable declared as BackpressureStrategyModifier and TypeFieldDescription(package private) final BackpressureStrategy
FlowableCreate.backpressure
Constructors in io.reactivex.rxjava3.internal.operators.flowable with parameters of type BackpressureStrategyModifierConstructorDescriptionFlowableCreate
(FlowableOnSubscribe<T> source, BackpressureStrategy backpressure)