Package | Description |
---|---|
io.reactivex |
Base reactive classes:
Flowable , Observable ,
Single , Maybe and
Completable ; base reactive consumers;
other common base interfaces. |
io.reactivex.internal.operators.flowable |
Modifier and Type | Method and Description |
---|---|
static BackpressureOverflowStrategy |
BackpressureOverflowStrategy.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackpressureOverflowStrategy[] |
BackpressureOverflowStrategy.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Flowable<T> |
Flowable.onBackpressureBuffer(long capacity,
Action onOverflow,
BackpressureOverflowStrategy overflowStrategy)
Instructs a Publisher that is emitting items faster than its Subscriber can consume them to buffer up to
a given amount of items until they can be emitted.
|
Constructor and Description |
---|
FlowableOnBackpressureBufferStrategy(Flowable<T> source,
long bufferSize,
Action onOverflow,
BackpressureOverflowStrategy strategy) |
Copyright © 2019. All rights reserved.