- AbstractRetry<T,S> - Class in reactor.retry
-
- allBut(Class<? extends Throwable>...) - Static method in interface reactor.retry.Retry
-
Returns a retry function that retries errors resulting from all exceptions except
the specified non-retriable exceptions.
- any() - Static method in interface reactor.retry.Retry
-
Returns a retry function that retries any exception.
- anyOf(Class<? extends Throwable>...) - Static method in interface reactor.retry.Retry
-
Returns a retry function that retries errors resulting from any of the
specified exceptions.
- applicationContext() - Method in interface reactor.retry.Context
-
Application context that may be used to perform any rollbacks before
a retry.
- applicationContext() - Method in class reactor.retry.DefaultContext
-
- apply(Flux<Long>) - Method in class reactor.retry.DefaultRepeat
-
- apply(Flux<Throwable>) - Method in class reactor.retry.DefaultRetry
-
- apply(Publisher<S>) - Method in interface reactor.retry.Repeat
-
Transforms the source into a repeating Flux
based on the properties
configured for this function.
- apply(Publisher<S>) - Method in interface reactor.retry.Retry
-
Transforms the source into a retrying Flux
based on the properties
configured for this function.
- averageDouble(Publisher<? extends Number>) - Static method in class reactor.math.MathFlux
-
Computes the double average of items in the source.
- averageDouble(Publisher<T>, Function<? super T, ? extends Number>) - Static method in class reactor.math.MathFlux
-
Computes the double average of items in the source, which are mapped to numerical values
using the provided mapping.
- averageFloat(Publisher<? extends Number>) - Static method in class reactor.math.MathFlux
-
Computes the float average of items in the source.
- averageFloat(Publisher<T>, Function<? super T, ? extends Number>) - Static method in class reactor.math.MathFlux
-
Computes the float average of items in the source, which are mapped to numerical values
using the provided mapping.