Uses of Class
rx.AsyncEmitter.BackpressureMode
-
Packages that use AsyncEmitter.BackpressureMode Package Description rx Base reactive classes: Observable, Single and Completable; base reactive consumers; other common base interfaces.rx.internal.operators Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner. -
-
Uses of AsyncEmitter.BackpressureMode in rx
Methods in rx that return AsyncEmitter.BackpressureMode Modifier and Type Method Description static AsyncEmitter.BackpressureMode
AsyncEmitter.BackpressureMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AsyncEmitter.BackpressureMode[]
AsyncEmitter.BackpressureMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in rx with parameters of type AsyncEmitter.BackpressureMode Modifier and Type Method Description static <T> Observable<T>
Observable. fromAsync(Action1<AsyncEmitter<T>> asyncEmitter, AsyncEmitter.BackpressureMode backpressure)
Provides an API (via a cold Observable) that bridges the reactive world with the callback-style, generally non-backpressured world. -
Uses of AsyncEmitter.BackpressureMode in rx.internal.operators
Fields in rx.internal.operators declared as AsyncEmitter.BackpressureMode Modifier and Type Field Description (package private) AsyncEmitter.BackpressureMode
OnSubscribeFromAsync. backpressure
Constructors in rx.internal.operators with parameters of type AsyncEmitter.BackpressureMode Constructor Description OnSubscribeFromAsync(Action1<AsyncEmitter<T>> asyncEmitter, AsyncEmitter.BackpressureMode backpressure)
-