I would like to know what is right way to implement server push notification using Spring 5 WebFlux
and WebSocket
with Reactor
framework under the hood.
A scenario is the following: clients A
and B
are connected to a server (and corresponding WebSocket
connections A
and B
established). Each of the clients could be notified with their own event(s), event A
or event B
.
Thanks