-
- All Implemented Interfaces:
-
java.io.Serializable,java.lang.Comparable
public enum Emitter.BackpressureModeOptions to handle backpressure in the emitter.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONEERRORSignals a rx.exceptions.MissingBackpressureException if the downstream can't keep up.
BUFFERBuffers (unbounded) all onNext calls until the downstream can consume them.
DROPDrops the incoming onNext value if the downstream can't keep up.
LATESTKeeps the latest onNext value and overwrites it with newer ones until the downstreamcan consume it.
-
Method Summary
Modifier and Type Method Description static Array<Emitter.BackpressureMode>values()static Emitter.BackpressureModevalueOf(String name)-
-
Method Detail
-
values
static Array<Emitter.BackpressureMode> values()
-
valueOf
static Emitter.BackpressureMode valueOf(String name)
-
-
-
-