Using .net rx in regular REST API - does it make sense?

155 Views Asked by At

I recently heard about reactive programming and started to explore Observer C# pattern and rx library. Despite some tutorials, articles and example use cases I still can't think if there are any benefits for my current project. It's pretty straightforward .net 6.0 web api. Controller with async methods returning Task<IActionResult>. Each method invokes and awaits for repository method that retrieves/modifies sql database data using Dapper. Is there any point in using rx library and implementing observer pattern instead if my API is a typical REST API with CRUD operations or would that be unneccessary overkill?

0

There are 0 best solutions below