Uses of Class
io.reactivex.rxjava3.core.BackpressureStrategy
-
Packages that use BackpressureStrategy Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable
,Observable
,Single
,Maybe
andCompletable
; base reactive consumers; other common base interfaces.io.reactivex.rxjava3.internal.operators.flowable -
-
Uses of BackpressureStrategy in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core that return BackpressureStrategy Modifier and Type Method Description static BackpressureStrategy
BackpressureStrategy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BackpressureStrategy[]
BackpressureStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.reactivex.rxjava3.core with parameters of type BackpressureStrategy Modifier and Type Method Description static <@NonNull T>
@NonNull Flowable<T>Flowable. 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.static <@NonNull T>
@NonNull Flowable<T>Flowable. fromObservable(@NonNull ObservableSource<@NonNull T> source, @NonNull BackpressureStrategy strategy)
Converts the givenObservableSource
into aFlowable
by applying the specified backpressure strategy.@NonNull Flowable<T>
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 BackpressureStrategy Modifier and Type Field Description (package private) BackpressureStrategy
FlowableCreate. backpressure
Constructors in io.reactivex.rxjava3.internal.operators.flowable with parameters of type BackpressureStrategy Constructor Description FlowableCreate(FlowableOnSubscribe<T> source, BackpressureStrategy backpressure)
-