Skip to content
Advertisement

Webflux execute a sequence of actions in sequential order and get their result

I have this issue with Webflux which I don’t seem to have a valid solution for: I have an item, T, which I need to process using n Webflux actions. Each action is a function that takes T and returns Mono<T>.

I could execute the actions on the item using flatMapSequential, but the issue is that I want to terminate the sequential actions if prior actions has been failed. For example, say T = User and we want to support deletion of users. So deletion will require the following actions: “deleting from db” > “delete pictures” > “publish delete message on Kafka”.

I must follow these exact steps, and not publish a message to Kafka if the DB deletion has been failed. However, ATM each action that’s being executed is a standalone one, so my “publish to Kafka” action is being executed even when my “remove from db” action fails and throws.

I’d love to understand what am I missing…

My execute method:

JavaScript

The actions are being injected using Spring Boot.

Advertisement

Answer

So seems like I got to something that works, posting it here in case it’ll help anybody in the future:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement