Find Mono/Flux ergonomic smells
Recipe ID
org.openrewrite.kotlin.spring.FindMonoFluxSmells$KtRecipeArtifact
io.moderne.recipe:recipes-kotlinReactive-pipeline shapes that read more naturally a different way: flatMap { Mono.just(...) } → map, block() / blockFirst() / blockLast() outside @Test methods, single-argument Flux.subscribe (missing error consumer), raw throw inside operator lambdas (use Mono.error), Mono.zip (verify independent operands), and Flux.fromIterable(listOf(...)) (use Flux.just).
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.kotlin.spring.FindMonoFluxSmells$KtRecipeIf the recipe isn’t available locally, install it with:
mod config recipes jar install io.moderne.recipe:recipes-kotlin:0.2.0Definition
This recipe runs the following recipes in order.
- Find
Mono.flatMap { x -> Mono.just(f(x)) }patternsorg.openrewrite.kotlin.spring.FindMonoFlatMapReturningMonoJust$KtRecipe - Find
Flux.flatMap { x -> Mono.just(f(x)) }patternsorg.openrewrite.kotlin.spring.FindFluxFlatMapReturningFluxJust$KtRecipe - Find
Mono.block()calls outside@Testmethodsorg.openrewrite.kotlin.spring.FindMonoBlockInNonTest$KtRecipe - Find
Flux.blockFirst()calls outside@Testmethodsorg.openrewrite.kotlin.spring.FindFluxBlockFirstInNonTest$KtRecipe - Find
Flux.blockLast()calls outside@Testmethodsorg.openrewrite.kotlin.spring.FindFluxBlockLastInNonTest$KtRecipe - Find
Flux.subscribe { ... }without an error consumerorg.openrewrite.kotlin.spring.FindFluxSubscribeWithoutOnError$KtRecipe - Find
throw ...statements inside Mono/Flux operator lambdasorg.openrewrite.kotlin.spring.FindMonoErrorInsteadOfThrow$KtRecipe - Find
Mono.zip(...)callsorg.openrewrite.kotlin.spring.FindMonoZipWithoutAllOperands$KtRecipe - Find
Flux.fromIterable(listOf(...))patternsorg.openrewrite.kotlin.spring.FindFluxFromIterableWithList$KtRecipe
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats