python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Maximum Subscribers per Sinks.Many in Spring Boot WebFlux
I have a simple spring boot WebFlux application that streams some server sent events to clients. The code is like the following:
Sinks.Many<String> sink = Sinks.many().multicast().onBackpressur...
Lacrymosa
Votes: 0
Answers: 1
Observer design Pattern - Struggling with real world backend cases
Good Morning / Evening :)
I am studying design patterns and I am now and a section with Observer pattern.
I understand how does it work but I am struggling with finding real world sample.
Most of samp...
Mateusz Gebroski
Votes: 0
Answers: 0
Launch concurrent dependent queries to an API
I need to launch several queries to an API from a Java application.
Some of those query depends of the result of the previous ones.
I want each query to be executed as soon as possible (ie. as soon as...
Nicolas Noilhan
Votes: 0
Answers: 1
How to implement a list of DB update queries in one call with SpringBoot Webflux + R2dbc application
The goal of my springBoot webflux r2dbc application is Controller accepts a Request including a list of DB UPDATE or INSERT details, and Response a result summary back.
I can write a ReactiveCrudRepo...
Chen Wang
Votes: 0
Answers: 1