This is the second part of my story about a bug I have created due to the lack of understanding on Spring reactor operators. I have described the basic of the operators in part1. This post will just show the simplified version of the real code. I have preserved all important components in the code… Continue reading
Posts Tagged → reactive
Declarative Style in Reactive Programming – Take 3.1
Just experienced a bug in my code that related to how I composed reactive publisher. The underlying issue is not that complicated but the way it manifest itself in reactive style is quite interesting. I will share the details in 2 blog posts. This post is the first part explaining basic of the building block… Continue reading
Declarative Style in Reactive Programming – Take 2
Reactive programming is tricky. I have written about it before here. It is not just learning a library and choose methods to use. It require changing the logic flow to be declarative and that need some time to practice. I have been using reactive programming for almost a year and still find myself creating bugs… Continue reading
Declarative style in reactive programming
My team has adopted reactive programming in our new project. We are using Spring WebFlux to serve data over REST call. The whole team is new on this programming style. The most essential concept I find myself struggling with is the declarative style of reactive programming The following made-up example in Kotlin below show typical… Continue reading