Uses of Class
mutiny.zero.BackpressureStrategy
-
Packages that use BackpressureStrategy Package Description mutiny.zero Mutiny Zero is minimal API for creating reactive streams compliantPublisher
objects. -
-
Uses of BackpressureStrategy in mutiny.zero
Methods in mutiny.zero that return BackpressureStrategy Modifier and Type Method Description BackpressureStrategy
TubeConfiguration. getBackpressureStrategy()
Get the back-pressure strategy.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 mutiny.zero with parameters of type BackpressureStrategy Modifier and Type Method Description static <T> org.reactivestreams.Publisher<T>
ZeroPublisher. create(BackpressureStrategy backpressureStrategy, int bufferSize, java.util.function.Consumer<Tube<T>> tubeConsumer)
Deprecated.TubeConfiguration
TubeConfiguration. withBackpressureStrategy(BackpressureStrategy strategy)
Specify the back-pressure strategy, cannot benull
.
-