Module mutiny.zero
Package mutiny.zero.operators
This package contains a set of simple operator classes that can be useful when working with
Flow.Publisher
streams.
Each operator class is a Flow.Publisher
that accepts an upstream
Flow.Publisher
and parameters.
-
Class Summary Class Description Concatenate<T> AFlow.Publisher
that is the concatenation of several ones.Recover<T> AFlow.Publisher
that recovers from failure using aFunction
.Retry<T> AFlow.Publisher
that retries on failure by re-subscribing to its upstream.Select<T> AFlow.Publisher
that selects elements matching aPredicate
.Transform<I,O> AFlow.Publisher
that transforms elements using aFunction
.