Uses of Class
mutiny.zero.TubeConfiguration
-
Packages that use TubeConfiguration Package Description mutiny.zero Mutiny Zero is minimal API for creating reactive streams compliantFlow.Publisher
objects. -
-
Uses of TubeConfiguration in mutiny.zero
Methods in mutiny.zero that return TubeConfiguration Modifier and Type Method Description TubeConfiguration
TubeConfiguration. withBackpressureStrategy(BackpressureStrategy strategy)
Specify the back-pressure strategy, cannot benull
.TubeConfiguration
TubeConfiguration. withBufferSize(int bufferSize)
Specify the buffer size must be strictly positive whenbackpressureStrategy
is one ofBackpressureStrategy.BUFFER
andBackpressureStrategy.LATEST
.Methods in mutiny.zero with parameters of type TubeConfiguration Modifier and Type Method Description static <T> java.util.concurrent.Flow.Publisher<T>
ZeroPublisher. create(TubeConfiguration configuration, java.util.function.Consumer<Tube<T>> tubeConsumer)
Create a newFlow.Publisher
with the general-purposeTube
API.
-