Relative Content

Tag Archive for javaspring-bootspring-webflux

Close Sink when no messages come for 5 mins in Webflux

i have an Angular Front end and spring boot backend. I have to stream some messages from backedn to the front. I am using webflux to send messages to the front end and in the UI i am using SSE to read the events. It works fine. Below is my streaming end point

Close Sink when no messages come for 5 mins in Webflux

i have an Angular Front end and spring boot backend. I have to stream some messages from backedn to the front. I am using webflux to send messages to the front end and in the UI i am using SSE to read the events. It works fine. Below is my streaming end point

Close Sink when no messages come for 5 mins in Webflux

i have an Angular Front end and spring boot backend. I have to stream some messages from backedn to the front. I am using webflux to send messages to the front end and in the UI i am using SSE to read the events. It works fine. Below is my streaming end point

Close Sink when no messages come for 5 mins in Webflux

i have an Angular Front end and spring boot backend. I have to stream some messages from backedn to the front. I am using webflux to send messages to the front end and in the UI i am using SSE to read the events. It works fine. Below is my streaming end point

Close Sink when no messages come for 5 mins in Webflux

i have an Angular Front end and spring boot backend. I have to stream some messages from backedn to the front. I am using webflux to send messages to the front end and in the UI i am using SSE to read the events. It works fine. Below is my streaming end point

Close Sink when no messages come for 5 mins in Webflux

i have an Angular Front end and spring boot backend. I have to stream some messages from backedn to the front. I am using webflux to send messages to the front end and in the UI i am using SSE to read the events. It works fine. Below is my streaming end point

Close Sink when no messages come for 5 mins in Webflux

i have an Angular Front end and spring boot backend. I have to stream some messages from backedn to the front. I am using webflux to send messages to the front end and in the UI i am using SSE to read the events. It works fine. Below is my streaming end point

Spring Boot Reactive WebSocket Returns 404 Error

I developed a Reactive WebSocket application in Spring Boot following this documentation. However, whenever I attempt to connect, I receive a 404 Not Found error. I have verified that the path is correct.

Running Slack service and token streaming concurrently in Spring web flux

I have a function named sendSlackmessage which takes a string and sends a message to Slack. Now, I’m faced with a scenario where I need to process a large text, splitting it into batches of 10 words, and send each batch to Slack using sendSlackmessage. However, since calling sendSlackmessage is time-consuming, I’m exploring the possibility of running the Slack service and token streaming concurrently to optimize performance.