Uses of Class
mutiny.zero.TubeConfiguration
Packages that use TubeConfiguration
Package
Description
Mutiny Zero is minimal API for creating reactive streams compliant
Flow.Publisher
objects.-
Uses of TubeConfiguration in mutiny.zero
Methods in mutiny.zero that return TubeConfigurationModifier and TypeMethodDescriptionTubeConfiguration.withBackpressureStrategy
(BackpressureStrategy strategy) Specify the back-pressure strategy, cannot benull
.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 TubeConfigurationModifier and TypeMethodDescriptionstatic <T> Flow.Publisher<T>
ZeroPublisher.create
(TubeConfiguration configuration, Consumer<Tube<T>> tubeConsumer) Create a newFlow.Publisher
with the general-purposeTube
API.